Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / OutputRange Class / TryParse Method
The string to parse.
OUT: The created OutputRange object or null if string does not define OutputRange object.

In This Topic
    TryParse Method (OutputRange)
    In This Topic
    Tries to parse specified string and create OutputRange object from it.
    Syntax
    'Declaration
     
    Public Shared Function TryParse( _
       ByVal s As System.String, _
       ByRef range As OutputRange _
    ) As System.Boolean
    public static System.bool TryParse( 
       System.string s,
       out OutputRange range
    )

    Parameters

    s
    The string to parse.
    range
    OUT: The created OutputRange object or null if string does not define OutputRange object.

    Return Value

    Returns true if string was successfully parsed, false otherwise.
    See Also