Documents for PDF .NET Edition
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfDictHolderExt Class / TryGetValue Method
The current PDF dictionary holder.
The key of the value to get.
OUT: The value associated with the key.

In This Topic
    TryGetValue Method (IPdfDictHolderExt)
    In This Topic
    Gets the value associated with the specified key.
    Syntax
    'Declaration
     
    Public Shared Function TryGetValue( _
       ByVal pdh As IPdfDictHolder, _
       ByVal key As System.String, _
       ByRef value As System.Object _
    ) As System.Boolean
    public static System.bool TryGetValue( 
       IPdfDictHolder pdh,
       System.string key,
       out System.object value
    )

    Parameters

    pdh
    The current PDF dictionary holder.
    key
    The key of the value to get.
    value
    OUT: The value associated with the key.

    Return Value

    true if the IPdfDictHolder contains an element with the specified key; otherwise, false.
    See Also