DTWAIN_ArrayGetAtLong |
Top Previous Next |
The DTWAIN_ArrayGetAtLong function retrieves a LONG value from a DTWAIN_ARRAY.
DTWAIN_BOOL DTWAIN_ArrayGetAtLong (
Parameters Array DTWAIN_ARRAY that the value will be retrieved from.
Position Index of value to retrieve.
pValue Pointer to the LONG that will receive the value.
Return Values If the function succeeds, TRUE is returned. If the function fails FALSE is returned.
Comments DTWAIN_ArrayGetAtLong is a specialized version of DTWAIN_ArrayGetAt.
The DTWAIN_ArrayGetAtLong function copies the LONG value located at index Index to the address pValue. A DTWAIN_ARRAY is indexed starting from position 0 through position n-1, where n is the total number of items in the DTWAIN_ARRAY Array.
This function will only work for DTWAIN_ARRAY's that can store LONG values (i.e. the DTWAIN_ARRAY was created with the DTWAIN_ARRAYLONG style. See DTWAIN_ArrayCreate for more information).
TWAIN State Transitions None.
Prerequisite Function Call(s)
See Also Retrieving Values from a DTWAIN_ARRAY
|