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

In This Topic
    TryGetNameArrayStr Method (IPdfDictExt)
    In This Topic
    Tries to get the PDF Name array associated with the specified key, the PDF names converted to strings.
    Syntax
    'Declaration
     
    Public Shared Function TryGetNameArrayStr( _
       ByVal dict As IPdfDict, _
       ByVal key As PdfName, _
       ByRef value() As System.String, _
       Optional ByVal singleToArray As System.Boolean _
    ) As System.Boolean
    public static System.bool TryGetNameArrayStr( 
       IPdfDict dict,
       PdfName key,
       out System.string[] value,
       System.bool singleToArray
    )

    Parameters

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

    Return Value

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