ndimarray
Browse all symbols documented inside this include file.
Stocks
| Name | Description |
|---|---|
| NDimCreate | Creates an N Dimensional Array |
| NDimDestroy | Destroys the NDim Array, and resets the handle to 0 to prevent accidental usage after it is destroyed. |
| NDimGetCell | Returns a single cell of data from an NDim Array. |
| NDimGetArray | Returns data within an NDim Array. Make sure the output buffer matches the size the array was created with! |
| NDimGetString | Returns a string value from an NDim Array. |
| NDimSetCell | Sets an NDim Array's single cell value. Use this only on array that were created with a cellsize of 1! |
| NDimSetArray | Sets an item's data with that of a local buffer. The buffer size must match what the cellsize that the array was created with! |
| NDimSetString | Sets a string value for an NDim Array. The stored string will be truncated if it is longer than the cellsize the array was created with! |
| NDimFillCell | Sets all of an NDim Array's single cell values. Use this only on array that were created with a cellsize of 1! |
| NDimFillArray | Sets all items' data with that of a local buffer. The buffer size must match what the cellsize that the array was created with! |
| NDimFillString | Sets all string values for an NDim Array. The stored string will be truncated if it is longer than the cellsize the array was created with! |