Difference between revisions of "Array GetStringValue"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns the string value with a certain index from numerical array. == Usage == <syntaxhighlight>Array_GetStringValue</syntaxhighlight> ==Example== Assign the second float...")
 
(No difference)

Latest revision as of 21:19, 27 February 2017

Returns the string value with a certain index from numerical array.

Usage

Array_GetStringValue

Example

Assign the second float value of "arr" array to Value1 variable:

Array: arr[10](0); 
Value1 = Array_GetStringValue (arr, 2);