Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfDictExt Class / TryGetString Method
The current dictionary.
The key identifying the value.
OUT. When this method returns, contains the String value.

In This Topic
    TryGetString Method (IPdfDictExt)
    In This Topic
    Tries to get the String value associated with the specified key. If the value does not exist or cannot be converted to a String, returns false.
    Syntax
    'Declaration
     
    Public Shared Function TryGetString( _
       ByVal dict As IPdfDict, _
       ByVal key As PdfName, _
       ByRef value As System.String _
    ) As System.Boolean
    public static System.bool TryGetString( 
       IPdfDict dict,
       PdfName key,
       out System.string value
    )

    Parameters

    dict
    The current dictionary.
    key
    The key identifying the value.
    value
    OUT. When this method returns, contains the String value.

    Return Value

    true if value exists; otherwise, false.
    See Also