Class NSStatisticsDataValue
Contains a single data value in a data set, used by CS for Status Screen reports.
Syntax
Constructors
NSStatisticsDataValue()
Initializes a new instance of the NSStatisticsDataValue class.
Declaration
NSStatisticsDataValue
Methods
GetDescription()
Contains a single data value in a data set, used by CS for Status Screen reports.
Declaration
String GetDescription()
Returns
| Type | Description |
|---|---|
| String | Tooltip for data value. |
Examples
NSStatisticsDataValue thing;
String description = thing.GetDescription();
GetLabel()
Contains a single data value in a data set, used by CS for Status Screen reports.
Declaration
String GetLabel()
Returns
| Type | Description |
|---|---|
| String | The label for the data value. |
Examples
NSStatisticsDataValue thing;
String label = thing.GetLabel();
GetValue()
Contains a single data value in a data set, used by CS for Status Screen reports.
Declaration
Float GetValue()
Returns
| Type | Description |
|---|---|
| Float | The value for the data value. |
Examples
NSStatisticsDataValue thing;
Float value = thing.GetValue();
SetDescription(String)
Contains a single data value in a data set, used by CS for Status Screen reports.
Declaration
Void SetDescription(String description)
Parameters
| Type | Name | Description |
|---|---|---|
| String | description | Tooltip for data value. |
Returns
| Type | Description |
|---|---|
| Void |
Examples
NSStatisticsDataValue thing;
String description;
thing.SetDescription(description);
SetLabel(String)
Contains a single data value in a data set, used by CS for Status Screen reports.
Declaration
Void SetLabel(String label)
Parameters
| Type | Name | Description |
|---|---|---|
| String | label | The label for the data value. |
Returns
| Type | Description |
|---|---|
| Void |
Examples
NSStatisticsDataValue thing;
String label;
thing.SetLabel(label);
SetValue(Float)
Contains a single data value in a data set, used by CS for Status Screen reports.
Declaration
Void SetValue(Float value)
Parameters
| Type | Name | Description |
|---|---|---|
| Float | value | The value for the data value. |
Returns
| Type | Description |
|---|---|
| Void |
Examples
NSStatisticsDataValue thing;
Float value;
thing.SetValue(value);