Difference between revisions of "Array SetIntegerValue"

From MultiCharts
Jump to navigation Jump to search
(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...")
 
(No difference)

Latest revision as of 16:22, 22 May 2012

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);