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

In This Topic
    GetNameArray Method (IPdfDictExt)
    In This Topic
    Gets the PdfName array associated with the specified key. Returns null if the array does not exist or cannot be converted to a PdfName array.
    Syntax
    'Declaration
     
    Public Shared Function GetNameArray( _
       ByVal dict As IPdfDict, _
       ByVal key As PdfName, _
       Optional ByVal singleToArray As System.Boolean _
    ) As PdfName()
    public static PdfName[] GetNameArray( 
       IPdfDict dict,
       PdfName key,
       System.bool singleToArray
    )

    Parameters

    dict
    The current dictionary.
    key
    The key identifying the value.
    singleToArray
    Indicates whether to convert a single PdfName to an array.

    Return Value

    The array associated with the specified key, or null.
    See Also