Parses a VBScript statement in the current report context.

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public Exception ParseStatement(
	string statement
)
Visual Basic
Public Function ParseStatement ( _
	statement As String _
) As Exception

Parameters

statement
Type: System..::..String
A string with a VBScript statement to be parsed.

Return Value

An Exception if the statement is invalid, or null if no errors were detected.

Remarks

This method is useful for providing VBScript syntax-checking in designer applications.

See Also