Array SetStringValue

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

Sets the string value for a certain index of the array

Usage

Array_SetStringValue

Example

Set the first and third values of arr array to “array string”

array: arr[10](false);
Array_SetStringValue(arr, 1, "array string");
Array_SetStringValue(arr, 3, "array string");