CGPDFArray.GetInt Method

Definition

Overloads

GetInt(Int32, nint)

Returns the integer element in the array at the specified index.

GetInt(nint, nint)

GetInt(Int32, nint)

Returns the integer element in the array at the specified index.

public bool GetInt (int idx, out nint result);
member this.GetInt : int *  -> bool

Parameters

idx
Int32

Index for the element we want to access.

result
System.System.IntPtr System.nativeint

If the element at position idx is an integer, this will contain the resulting value.

Returns

True if the element at the given position is of the specified type and the result is set on the out parameter; False if you tried to access an out of bounds element, or if the element at that position is of a different type.

Applies to

GetInt(nint, nint)

public bool GetInt (nint idx, out nint result);
member this.GetInt : nint *  -> bool

Parameters

idx
System.System.IntPtr System.nativeint
result
System.System.IntPtr System.nativeint

Returns

Applies to