Array SetFloatValue

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

Sets the float value for a certain index of numerical array

Usage

Array_SetFloatValue

Example

Set the first and third values of arr array to 1.789

array: arr[10](false);
Array_SetFloatValue (arr, 1, 1.789000352);
Array_SetFloatValue (arr, 3, 1.789000352);