CGPDFArray.GetBoolean Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetBoolean(Int32, Boolean) |
Returns the boolean element in the array at the specified index. |
GetBoolean(nint, Boolean) |
GetBoolean(Int32, Boolean)
Returns the boolean element in the array at the specified index.
public bool GetBoolean (int idx, out bool result);
member this.GetBoolean : int * -> bool
Parameters
- idx
- Int32
Index for the element we want to access.
- result
- Boolean
If the element at position idx is a boolean, 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.