DS_SetValue

DS_SetValue sets a value in the “Datasource” map.

bool = DS_SetValue(hData, ssKey, value)

Return Value

Is TRUE (1), if the function was successful and otherwise FALSE (0).

Parameters

hData

hData is the dataset handle.

ssKey

ssKey is the name of the key to be set.

value

value is the value to be set.

Example

DS_SetValue(hData, "FirstPoint", 0);
DS_SetValue(hData, "NumberOfPoints", 7200);
XYReload(hData, XY_RELOAD_UPDATE);

History

Version Description
5.20 New.

id-630409