TryGetBool Method (IPdfArrayExt)
In This Topic
Tries to get the System.Boolean value with the specified index.
Syntax
'Declaration
Public Shared Function TryGetBool( _
ByVal As IPdfArray, _
ByVal As System.Integer, _
ByRef As System.Boolean _
) As System.Boolean
public static System.bool TryGetBool(
IPdfArray ,
System.int ,
out System.bool
)
Parameters
- array
- The current array.
- index
- The index of the value to get.
- value
- OUT: The integer value.
Return Value
true if value exists and can be converted to an bool; otherwise false.
See Also