IBasicNoUISyntaxCheckFile Method |
Checks for syntax errors.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
SyntaxError[] SyntaxCheckFile(
string fileName,
int errorLimit
)
Function SyntaxCheckFile (
fileName As String,
errorLimit As Integer
) As Error()
array<Error^>^ SyntaxCheckFile(
String^ fileName,
int errorLimit
)
Parameters
- fileName String
-
Check syntax of this file.
If this is a null string, use the value of the FileName property as the file name.
- errorLimit Int32
-
Maximum number of errors allowed (>= 1).
Return Value
Error
An array of
Error objects.
RemarksSyntaxCheckFile parses the code to check for possible errors.
This will include any #uses code as well.
See Also