Parses a string into properties of the RdlObject class.
Namespace:
C1.C1RdlAssembly: C1.C1Report.2 (in C1.C1Report.2.dll)
Syntax
C# |
---|
public static void TryParse( string s, out bool isExpression, out Object value, out string expression ) |
Visual Basic |
---|
Public Shared Sub TryParse ( _ s As String, _ <OutAttribute> ByRef isExpression As Boolean, _ <OutAttribute> ByRef value As Object, _ <OutAttribute> ByRef expression As String _ ) |
Parameters
- s
- Type: System..::..String
The string to parse.
- isExpression
- Type: System..::..Boolean%
OUT: true if string represents an expression, false otherwise.
- value
- Type: System..::..Object%
OUT: the object (string) if isExpression is false.
- expression
- Type: System..::..String%
OUT: the expression if isExpression is true.