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

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

    Parameters

    array
    The current array.
    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 string; otherwise false.
    See Also