Parses a string into properties of RdlSize type.

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

Syntax

C#
public static bool TryParse(
	string s,
	out bool isExpression,
	out ReportSize value,
	out string expression
)
Visual Basic
Public Shared Function TryParse ( _
	s As String, _
	<OutAttribute> ByRef isExpression As Boolean, _
	<OutAttribute> ByRef value As ReportSize, _
	<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: C1.C1Rdl..::..ReportSize%
OUT: an instance of ReportSize if isExpression is false, null otherwise.
expression
Type: System..::..String%
OUT: the expression string if is true, null otherwise.

Return Value

Returns true if s represents a valid RdlSize instance.

See Also