Toggle menu
876
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

FixedCrossTableDataItem class: Difference between revisions

From Catglobe Wiki
Hovietluu (talk | contribs)
No edit summary
No edit summary
 
(8 intermediate revisions by one other user not shown)
Line 1: Line 1:
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
{{CGscriptClass_Template
= <span class="mw-headline" id="Number">Number</span> =
|Name=<nowiki>FixedCrossTableDataItem</nowiki>
|Description=<nowiki>A data item used in FixedCrossTable</nowiki>
|InheritsFrom=object|Constructors=
{{CGscriptConstructors_Template|Description=<nowiki>Construct new data item.</nowiki>}}
|Methods=
{{CGscriptMethods_Template|ReturnType=string|Name=<nowiki>ToString</nowiki>|Inherited=object|Description=<nowiki>The string representation of the object.</nowiki>}}
|Properties=
{{CGscriptProperties_Template|ReturnType=string|Name=<nowiki>ObjectTypeName</nowiki>|HasGetter=1|Description=<nowiki>The name of the type of object.</nowiki>}}
{{CGscriptProperties_Template|ReturnType=object|Name=<nowiki>SignificanceZ</nowiki>|HasGetter=1|HasSetter=1|Description=<nowiki>Get/Set the significance value.</nowiki>}}
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Inherited=object|Description=<nowiki>Get information about this class.</nowiki>}}
{{CGscriptProperties_Template|ReturnType=object|Name=<nowiki>Value</nowiki>|HasGetter=1|HasSetter=1|Description=<nowiki>Get/Set the value.</nowiki>}}
}}


=== Examples ===


<source lang="javascript">
FixedCrossTableDataItem dataItem = new FixedCrossTableDataItem();


The number object
dataItem.Value = 5;
dataItem.SignificanceZ = 10;


=== <span class="mw-headline" id="Constructors"><span style="color: #DF8621;">'''Constructors'''</span></span> ===
print(dataItem.Value);
 
print(dataItem.SignificanceZ);
*'''(&lt;a href="/index.php/String_class" title="String class"&gt;string&lt;/a&gt; value '''"Value to give object"''')''' - New object with the given value
</source>
*'''('''number''' value '''"Value to give object"''')''' - New object with the given value
 
=== <span class="mw-headline" id="Methods"><span style="color: #DF8621;">'''Methods'''</span></span> ===
 
*'''&lt;a href="/index.php/String_class" title="String class"&gt;string&lt;/a&gt; ToString()''' - The string representation of the object.
 
=== <span class="mw-headline" id="Properties"><span style="color: #DF8621;">'''Properties'''</span></span> ===
 
*'''&lt;a href="/index.php/String_class" title="String class"&gt;string&lt;/a&gt; ObjectTypeName { get; }''' - The name of the type of object.
*'''&lt;a href="/index.php/TypeInformation_class" title="TypeInformation class"&gt;TypeInformation&lt;/a&gt; TypeInformation { get; }''' - Get information about this class.
</div>

Latest revision as of 06:43, 2 July 2020

FixedCrossTableDataItem



A data item used in FixedCrossTable

Parent class

Inherits from object

Constructors

  • () - Construct new data item.

Methods

  • (From object) string ToString() - The string representation of the object.

Properties

  • string ObjectTypeName { get; } - The name of the type of object.
  • object SignificanceZ { get; set; } - Get/Set the significance value.
  • (From object) TypeInformation TypeInformation { get; } - Get information about this class.
  • object Value { get; set; } - Get/Set the value.


Examples

FixedCrossTableDataItem dataItem = new FixedCrossTableDataItem();

dataItem.Value = 5;
dataItem.SignificanceZ = 10;

print(dataItem.Value);
print(dataItem.SignificanceZ);