 | PdfiumFPDFARRAY_GetNumberAt Method |
Gets the float value at a given index.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static float FPDFARRAY_GetNumberAt(
IntPtr handle,
int index
)
Public Shared Function FPDFARRAY_GetNumberAt (
handle As IntPtr,
index As Integer
) As Single
public:
static float FPDFARRAY_GetNumberAt(
IntPtr handle,
int index
)
static member FPDFARRAY_GetNumberAt :
handle : IntPtr *
index : int -> float32
public static float FPDFARRAY_GetNumberAt(
IntPtr handle,
int index
)
Patagames.Pdf.Pdfium.FPDFARRAY_GetNumberAt = function(handle, index);
Parameters
- handle IntPtr
- Handle to Array object.
- index Int32
- An integer index that is greater than or equal to 0 and less than the value returned by FPDFARRAY_GetCount(IntPtr).
Return Value
SingleA float value currently at this index or null if any error is occured.
See Also