Click or drag to resize

BasicNoUIObjSyntaxCheck Method

Checks for syntax errors.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public bool SyntaxCheck()

Return Value

Boolean
True if the Code property doesn't have any syntax errors.

Implements

IBasicNoUISyntaxCheck
Remarks
SyntaxCheck parses the code to check for possible errors. This will include any #uses code as well.
Example
Syntax check button:
if (basicIdeCtl1.SyntaxCheck())
    MessageBox.Show("Code does not any have syntax errors.");
See Also