Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfArrayExt Class / TryGetName Method
The current IPdfArray.
The index of the value to get.
OUT: The string value.

In This Topic
    TryGetName Method (IPdfArrayExt)
    In This Topic
    Tries to get the PDF name value with the specified index as a string.
    Syntax
    'Declaration
     
    Public Shared Function TryGetName( _
       ByVal array As IPdfArray, _
       ByVal index As System.Integer, _
       ByRef value As System.String _
    ) As System.Boolean
    public static System.bool TryGetName( 
       IPdfArray array,
       System.int index,
       out System.string value
    )

    Parameters

    array
    The current IPdfArray.
    index
    The index of the value to get.
    value
    OUT: The string value.

    Return Value

    true if value exists and can be converted to a PDF name; otherwise false.
    See Also