'Declaration Public Shared Function TryParse( _ ByVal s As String, _ ByRef isExpression As Boolean, _ ByRef value As ReportSize, _ ByRef expression As String _ ) As Boolean
public static bool TryParse( string s, out bool isExpression, out ReportSize value, out string expression )
Parameters
- s
- A string to parse.
- isExpression
- OUT: true if s contains an expression, false otherwise.
- value
- OUT: an instance of ReportSize if isExpression is false, null otherwise.
- expression
- OUT: the expression string if %% is true, null otherwise.