Parses a string into properties of the RdlBool class.

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

Syntax

C#
public static bool TryParse(
	string s,
	out bool isExpression,
	out bool value,
	out string expression
)
Visual Basic
Public Shared Function TryParse ( _
	s As String, _
	<OutAttribute> ByRef isExpression As Boolean, _
	<OutAttribute> ByRef value As Boolean, _
	<OutAttribute> ByRef expression As String _
) As Boolean

Parameters

s
Type: System..::..String
A string to parse.
isExpression
Type: System..::..Boolean%
OUT: true if s contains an expression, false otherwise.
value
Type: System..::..Boolean%
OUT: the Boolean value if isExpression is false.
expression
Type: System..::..String%
OUT: the expression if isExpression is true.

Return Value

true if s represents a valid RdlBool, false otherwise.

See Also