Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfDictExt Class / TryGetDictArray Method
The current dictionary.
The key identifying the array.
OUT: The array of IPdfDict.
Indicates whether to convert a single IPdfDict value to an array.

In This Topic
    TryGetDictArray Method
    In This Topic
    Tries to gets the array of IPdfDict objects associated with the specified key.
    Syntax
    'Declaration
     
    Public Shared Function TryGetDictArray( _
       ByVal dict As IPdfDict, _
       ByVal key As PdfName, _
       ByRef value() As IPdfDict, _
       Optional ByVal singleToArray As System.Boolean _
    ) As System.Boolean
    public static System.bool TryGetDictArray( 
       IPdfDict dict,
       PdfName key,
       out IPdfDict[] value,
       System.bool singleToArray
    )

    Parameters

    dict
    The current dictionary.
    key
    The key identifying the array.
    value
    OUT: The array of IPdfDict.
    singleToArray
    Indicates whether to convert a single IPdfDict value to an array.

    Return Value

    true if successful, false otherwise.
    See Also