Reports for WinForms | ComponentOne
C1.C1Report.4 Assembly / C1.C1Rdl Namespace / RdlObject Class / TryParse Method
The string to parse.
OUT: true if string represents an expression, false otherwise.
OUT: the object (string) if isExpression is false.
OUT: the expression if isExpression is true.

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

    Parameters

    s
    The string to parse.
    isExpression
    OUT: true if string represents an expression, false otherwise.
    value
    OUT: the object (string) if isExpression is false.
    expression
    OUT: the expression if isExpression is true.
    See Also