Reports for WinForms | ComponentOne
C1.C1Report.4 Assembly / C1.C1Rdl Namespace / RdlString Class / TryParse Method
The string to parse.
OUT: true if s represents an expression.
OUT: the string value.

In This Topic
    TryParse Method (RdlString)
    In This Topic
    Parses a string into properties of the RdlString class.
    Syntax
    'Declaration
     
    Public Shared Sub TryParse( _
       ByVal s As String, _
       ByRef isExpression As Boolean, _
       ByRef value As String _
    ) 
    public static void TryParse( 
       string s,
       out bool isExpression,
       out string value
    )

    Parameters

    s
    The string to parse.
    isExpression
    OUT: true if s represents an expression.
    value
    OUT: the string value.
    See Also