Parses a string into properties of the RdlFloat 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 double value,
	out string expression
)
Visual Basic
Public Shared Function TryParse ( _
	s As String, _
	<OutAttribute> ByRef isExpression As Boolean, _
	<OutAttribute> ByRef value As Double, _
	<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, false otherwise.
value
Type: System..::..Double%
OUT: the double value if isExpression is false.
expression
Type: System..::..String%
OUT: the expression if isExpression is true.

Return Value

true if s represents a valid RdlFloat, false otherwise.

See Also