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

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

    Parameters

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

    Return Value

    true if successful; false otherwise.
    See Also