Parses a string into properties of the RdlInt 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 int value,
	out string expression
)
Visual Basic
Public Shared Function TryParse ( _
	s As String, _
	<OutAttribute> ByRef isExpression As Boolean, _
	<OutAttribute> ByRef value As Integer, _
	<OutAttribute> ByRef expression As String _
) As Boolean

Parameters

s
Type: System..::..String
The string to parse.
isExpression
Type: System..::..Boolean%
OUT: true if s contains an expression.
value
Type: System..::..Int32%
OUT: the constant value if isExpression is false.
expression
Type: System..::..String%
OUT: the expression if isExpression is true.

Return Value

true if s represents a valid RdlInt, false otherwise.

See Also