Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfArrayExt Class / TryGetNameArrayStr Method
The current array.
The index of the value to get.
OUT: The string array.
Indicates whether to convert a single PDF Name value to an array.

In This Topic
    TryGetNameArrayStr Method (IPdfArrayExt)
    In This Topic
    Tries to get the PDF Name array at the specified index, the PDF Name array represented as string.
    Syntax
    'Declaration
     
    Public Shared Function TryGetNameArrayStr( _
       ByVal array As IPdfArray, _
       ByVal index As System.Integer, _
       ByRef value() As System.String, _
       Optional ByVal singleToArray As System.Boolean _
    ) As System.Boolean
    public static System.bool TryGetNameArrayStr( 
       IPdfArray array,
       System.int index,
       out System.string[] value,
       System.bool singleToArray
    )

    Parameters

    array
    The current array.
    index
    The index of the value to get.
    value
    OUT: The string array.
    singleToArray
    Indicates whether to convert a single PDF Name value to an array.

    Return Value

    true if value at specified index can be converted to an integer array; otherwise false.
    See Also