ImageGear Professional v18.2 > API Reference Guide > Core Component API Reference > Core Component Objects > IGCoreCtl Control > IGCoreCtl Methods > SafeArrayGet Method |
Returns a safe array using the given parameters. This allows you to access memory contents safely given a pointer to the beginning of the data in memory, the size of each item, and the number of items.
SafeArrayGet(
ArrayPtr as Long,
ItemSize as Long,
ItemCount as Long) as Variant
Name | Description |
---|---|
ArrayPtr | Pointer to the beginning of data in memory |
ItemSize | Size of an individual item in the data |
ItemCount | Number of items in the data |
Safe array for accessing the given memory as described.
N/A
None