Array SetBooleanValue

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

Sets the Boolean value for a certain index of array

Usage

Array_SetBooleanValue

Example

Set the first and third values of arr array to TRUE

array: arr[10](false);
array_setbooleanvalue(arr, 1, true);
array_setbooleanvalue(arr, 3, true);