Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
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
 
(7 intermediate revisions by one other user not shown)
Line 1: Line 1:
<div id="mw-page-base" class="noprint"></div><div id="mw-head-base" class="noprint"></div><!-- content --><div id="content" class="mw-body" role="main"><div id="mw-js-message" style="display:none;" lang="english (gb)" dir="ltr"></div><!-- firstHeading -->
{{CGscriptClass_Template
= <span dir="auto">Number class</span> =
|Name=<nowiki>FixedCrossTableDataItem</nowiki>
<!-- /firstHeading --><!-- bodyContent --><div id="bodyContent"><!-- tagline --><div id="siteSub">From Catglobe Wiki</div><!-- /tagline --><!-- subtitle --><div id="contentSub" lang="english (gb)" dir="ltr"></div><!-- /subtitle --><!-- jumpto --><div id="jump-to-nav" class="mw-jump">Jump to: [[#mw-navigation|navigation]], [[#p-search|search]]</div><!-- /jumpto --><!-- bodycontent --><div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
|Description=<nowiki>A data item used in FixedCrossTable</nowiki>
= <span class="mw-headline" id="Number">Number</span> =
|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);
*'''([[/index.php/String_class|string]] 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> ===
 
*'''[[/index.php/String_class|string]] ToString()''' - The string representation of the object.
 
=== <span class="mw-headline" id="Properties"><span style="color:#DF8621;">'''Properties'''</span></span> ===
 
*'''[[/index.php/String_class|string]] ObjectTypeName { get; }''' - The name of the type of object.
*'''[[/index.php/TypeInformation_class|TypeInformation]] TypeInformation { get; }''' - Get information about this class.
<!--
NewPP limit report
Preprocessor visited node count: 306/1000000
Preprocessor generated node count: 1153/1000000
Post‐expand include size: 2766/2097152 bytes
Template argument size: 2662/2097152 bytes
Highest expansion depth: 8/40
Expensive parser function count: 0/100
--><!-- Saved in parser cache with key catglobewiki:pcache:idhash:6133-0!*!0!!*!*!* and timestamp 20151206143219 --></div><!-- /bodycontent --><!-- printfooter --><div class="printfooter">Retrieved from "[http://wiki.catglobe.com/index.php?title=Number_class&oldid=20974 http://wiki.catglobe.com/index.php?title=Number_class&oldid=20974]"</div><!-- /printfooter --><!-- catlinks --><div id="catlinks" class="catlinks"><div id="mw-normal-catlinks" class="mw-normal-catlinks">[[/index.php/Special:Categories|Category]]:*[[/index.php/Category:Classes|Classes]]
</div></div><!-- /catlinks --><div class="visualClear"></div><!-- debughtml --><!-- /debughtml --></div><!-- /bodyContent --></div><!-- /content --><div id="mw-navigation">
== Navigation menu ==
<!-- header --><div id="mw-head"><!-- 0 --><div id="p-personal" role="navigation">
=== Personal tools ===
 
*[[/index.php/User:Hovietluu|Hovietluu]]
*[[/index.php/User_talk:Hovietluu|Talk]]
*[[/index.php/Special:Preferences|Preferences]]
*[[/index.php/Special:Watchlist|Watchlist]]
*[[/index.php/Special:Contributions/Hovietluu|Contributions]]
*[[/index.php?title=Special:UserLogout&returnto=Number+class|Log out]]
</div></div></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);