Array SetIntegerValue

From MultiCharts
Revision as of 16:22, 22 May 2012 by Roman MultiCharts (talk | contribs) (Created page with "Sets the integer value for a certain index of numerical array ==Usage== <syntaxhighlight>Array_SetIntegerValue</syntaxhighlight> ==Example== Set the first and third values...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Sets the integer value for a certain index of numerical array

Usage

Array_SetIntegerValue

Example

Set the first and third values of arr array to 500

array: arr[10](false);
Array_SetIntegerValue(arr, 1, 500);
Array_SetIntegerValue(arr, 3, 500);