Class NSStatisticsDataValue

Contains a single data value in a data set, used by CS for Status Screen reports.

Constructors

NSStatisticsDataValue()

Initializes a new instance of the NSStatisticsDataValue class.

Declaration

NSStatisticsDataValue

Methods

GetDescription()

Declaration

String GetDescription()

Examples

NSStatisticsDataValue thing;
String description = thing.GetDescription();

Returns

Type Description
String Tooltip for data value.

GetLabel()

Declaration

String GetLabel()

Examples

NSStatisticsDataValue thing;
String label = thing.GetLabel();

Returns

Type Description
String The label for the data value.

GetValue()

Declaration

Float GetValue()

Examples

NSStatisticsDataValue thing;
Float value = thing.GetValue();

Returns

Type Description
Float The value for the data value.

SetDescription(String)

Declaration

Void SetDescription(String description)

Examples

NSStatisticsDataValue thing;
String description;
thing.SetDescription(description);

Parameters

Type Name Description
String description Tooltip for data value.

Returns

Type Description
Void

SetLabel(String)

Declaration

Void SetLabel(String label)

Examples

NSStatisticsDataValue thing;
String label;
thing.SetLabel(label);

Parameters

Type Name Description
String label The label for the data value.

Returns

Type Description
Void

SetValue(Float)

Declaration

Void SetValue(Float value)

Examples

NSStatisticsDataValue thing;
Float value;
thing.SetValue(value);

Parameters

Type Name Description
Float value The value for the data value.

Returns

Type Description
Void