Documents for PDF .NET Edition
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfArrayHolderExt Class / TryGetFloatArray Method
The current PDF array holder.
The index of the item to return.
OUT: the value at the specified index.

In This Topic
    TryGetFloatArray Method (IPdfArrayHolderExt)
    In This Topic
    Tries to get the array of float values at the specified index.
    Syntax
    'Declaration
     
    Public Shared Function TryGetFloatArray( _
       ByVal pah As IPdfArrayHolder, _
       ByVal index As System.Integer, _
       ByRef value() As System.Single _
    ) As System.Boolean
    public static System.bool TryGetFloatArray( 
       IPdfArrayHolder pah,
       System.int index,
       out System.float[] value
    )

    Parameters

    pah
    The current PDF array holder.
    index
    The index of the item to return.
    value
    OUT: the value at the specified index.

    Return Value

    True if the value can be converted to an array of float values, false otherwise.
    See Also