[]
Tries to get the Integer array at the specified index.
public static bool TryGetIntArray(this IPdfArray array, int index, out int[] value, bool singleToArray = false)
Public Shared Function TryGetIntArray(array As IPdfArray, index As Integer, ByRef value As Integer(), Optional singleToArray As Boolean = False) As Boolean
| Type | Name | Description |
|---|---|---|
| IPdfArray | array | The current array. |
| int | index | The index of the value to get. |
| int[] | value | OUT: The integer array. |
| bool | singleToArray | Indicates whether to convert a single Integer value to an array. |
| Type | Description |
|---|---|
| bool | true if value at specified index can be converted to an integer array; otherwise false. |