Difference between revisions of "FixedCrossTableDataItem class"
Line 11: | Line 11: | ||
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=TypeInformation|HasGetter=1|Description=Get information about this class.}} | {{CGscriptProperties_Template|ReturnType=TypeInformation|Name=TypeInformation|HasGetter=1|Description=Get information about this class.}} | ||
{{CGscriptProperties_Template|ReturnType=AnyType|Name=Value|HasGetter=1|HasSetter=1|Description=Get/Set the value.}} | {{CGscriptProperties_Template|ReturnType=AnyType|Name=Value|HasGetter=1|HasSetter=1|Description=Get/Set the value.}} | ||
− | }} <source lang="javascript"> | + | }} |
+ | |||
+ | === Examples === | ||
+ | |||
+ | <source lang="javascript"> | ||
FixedCrossTableDataItem dataItem = new FixedCrossTableDataItem(); | FixedCrossTableDataItem dataItem = new FixedCrossTableDataItem(); | ||
Revision as of 08:41, 11 January 2016
FixedCrossTableDataItem
A data item used in FixedCrossTable
Constructors
- () - Construct new data item.
Methods
- string ToString() - The string representation of the object.
Properties
- string ObjectTypeName { get; } - The name of the type of object.
- AnyType SignificanceZ { get; set; } - Get/Set the significance value.
- TypeInformation TypeInformation { get; } - Get information about this class.
- AnyType Value { get; set; } - Get/Set the value.
Examples
FixedCrossTableDataItem dataItem = new FixedCrossTableDataItem();
dataItem.Value = 5;
dataItem.SignificanceZ = 10;
print(dataItem.Value);
print(dataItem.SignificanceZ);