ComponentOne ReportViewer for ASP.NET Web Forms
C1.C1Report.4 Assembly / C1.C1Rdl Namespace / RdlFloat Class / TryParse Method
The string to parse.
OUT: true if s contains an expression, false otherwise.
OUT: the double value if isExpression is false.
OUT: the expression if isExpression is true.

In This Topic
    TryParse Method (RdlFloat)
    In This Topic
    Parses a string into properties of the RdlFloat class.
    Syntax
    'Declaration
     
    Public Shared Function TryParse( _
       ByVal s As System.String, _
       ByRef isExpression As System.Boolean, _
       ByRef value As System.Double, _
       ByRef expression As System.String _
    ) As System.Boolean
    public static System.bool TryParse( 
       System.string s,
       out System.bool isExpression,
       out System.double value,
       out System.string expression
    )

    Parameters

    s
    The string to parse.
    isExpression
    OUT: true if s contains an expression, false otherwise.
    value
    OUT: the double value if isExpression is false.
    expression
    OUT: the expression if isExpression is true.

    Return Value

    true if s represents a valid RdlFloat, false otherwise.
    See Also