Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / PdfDateTime Structure / TryParse Method
The string in the format D:YYYYMMDDHHmmSSOHH'mm'.
OUT: The parsed System.DateTimeOffset value.

In This Topic
    TryParse Method (PdfDateTime)
    In This Topic
    Tries to convert a string to System.DateTimeOffset. See PDF 1.7 specification chapter 3.8.3.
    Syntax
    'Declaration
     
    Public Shared Function TryParse( _
       ByVal s As System.String, _
       ByRef value As System.DateTimeOffset _
    ) As System.Boolean
    public static System.bool TryParse( 
       System.string s,
       out System.DateTimeOffset value
    )

    Parameters

    s
    The string in the format D:YYYYMMDDHHmmSSOHH'mm'.
    value
    OUT: The parsed System.DateTimeOffset value.

    Return Value

    True if conversion succeed, false otherwise.
    See Also