This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
thinkgeo.mapsuite.portablecore.geoobjectnode [2015/09/21 08:09] admin |
thinkgeo.mapsuite.portablecore.geoobjectnode [2017/03/16 21:59] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== ThinkGeo.MapSuite.Core.GeoObjectNode ====== | ====== ThinkGeo.MapSuite.Core.GeoObjectNode ====== | ||
+ | |||
+ | {{section>upgrade_map_suite_to_10.0}} | ||
+ | |||
This class represent the model of an object. | This class represent the model of an object. | ||
===== Inheritance Hierarchy ===== | ===== Inheritance Hierarchy ===== | ||
Line 8: | Line 11: | ||
** {{wiki:PublicMethod.gif|}} GeoObjectNode() ** | ** {{wiki:PublicMethod.gif|}} GeoObjectNode() ** | ||
- | Creates an instance of GeoObjectNode. | + | * //Creates an instance of GeoObjectNode.// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Parameters == | == Parameters == | ||
<div newline></div> | <div newline></div> | ||
** {{wiki:PublicMethod.gif|}} GeoObjectNode(String) ** | ** {{wiki:PublicMethod.gif|}} GeoObjectNode(String) ** | ||
- | Creates an instance of GeoObjectNode with a name. | + | * //Creates an instance of GeoObjectNode with a name.// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Parameters == | == Parameters == | ||
* //name// | * //name// | ||
Line 28: | Line 31: | ||
** {{wiki:PublicMethod.gif|}} ToString() ** | ** {{wiki:PublicMethod.gif|}} ToString() ** | ||
- | Returns a string that contains the name, children count and attribute count of this node. | + | * //Returns a string that contains the name, children count and attribute count of this node.// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
Line 40: | Line 43: | ||
** {{wiki:PublicMethod.gif|}} Equals(Object) ** | ** {{wiki:PublicMethod.gif|}} Equals(Object) ** | ||
- | N/A | + | * //N/A// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
Line 56: | Line 59: | ||
** {{wiki:PublicMethod.gif|}} GetHashCode() ** | ** {{wiki:PublicMethod.gif|}} GetHashCode() ** | ||
- | N/A | + | * //N/A// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
Line 68: | Line 71: | ||
** {{wiki:PublicMethod.gif|}} GetType() ** | ** {{wiki:PublicMethod.gif|}} GetType() ** | ||
- | N/A | + | * //N/A// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
Line 79: | Line 82: | ||
<div newline></div> | <div newline></div> | ||
==== Protected Methods ==== | ==== Protected Methods ==== | ||
- | ** {{wiki:ProtectedMethod.gif|}} Nyw=(String,String) ** | + | ** {{wiki:ProtectedMethod.gif|}} SetAttribute(String,String) ** |
- | N/A | + | * //N/A// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
Line 99: | Line 102: | ||
<div newline></div> | <div newline></div> | ||
- | ** {{wiki:ProtectedMethod.gif|}} OCw=(String) ** | + | ** {{wiki:ProtectedMethod.gif|}} GetAttribute(String) ** |
- | N/A | + | * //N/A// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
Line 115: | Line 118: | ||
<div newline></div> | <div newline></div> | ||
- | ** {{wiki:ProtectedMethod.gif|}} OSw=(String) ** | + | ** {{wiki:ProtectedMethod.gif|}} RemoveAttribute(String) ** |
- | N/A | + | * //N/A// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
Line 133: | Line 136: | ||
** {{wiki:ProtectedMethod.gif|}} Finalize() ** | ** {{wiki:ProtectedMethod.gif|}} Finalize() ** | ||
- | N/A | + | * //N/A// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
Line 145: | Line 148: | ||
** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** | ** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** | ||
- | N/A | + | * //N/A// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
Line 158: | Line 161: | ||
** {{wiki:PublicProperty.gif|}} Name ** | ** {{wiki:PublicProperty.gif|}} Name ** | ||
- | Gets or sets the Name of the node. | + | * //Gets or sets the Name of the node.// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
* Type:String | * Type:String | ||
Line 166: | Line 169: | ||
** {{wiki:PublicProperty.gif|}} Parent ** | ** {{wiki:PublicProperty.gif|}} Parent ** | ||
- | Gets or sets the Parent of the node. | + | * //Gets or sets the Parent of the node.// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
* Type:[[ThinkGeo.MapSuite.Core.GeoObjectNode|GeoObjectNode]] | * Type:[[ThinkGeo.MapSuite.Core.GeoObjectNode|GeoObjectNode]] | ||
Line 174: | Line 177: | ||
** {{wiki:PublicProperty.gif|}} Children ** | ** {{wiki:PublicProperty.gif|}} Children ** | ||
- | Gets the Children of the node. | + | * //Gets the Children of the node.// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
* Type:Collection<[[ThinkGeo.MapSuite.Core.GeoObjectNode|GeoObjectNode]]> | * Type:Collection<[[ThinkGeo.MapSuite.Core.GeoObjectNode|GeoObjectNode]]> | ||
Line 182: | Line 185: | ||
** {{wiki:PublicProperty.gif|}} Attributes ** | ** {{wiki:PublicProperty.gif|}} Attributes ** | ||
- | Gets the Attribute of the node. | + | * //Gets the Attribute of the node.// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
* Type:Dictionary<String,String> | * Type:Dictionary<String,String> | ||
Line 190: | Line 193: | ||
** {{wiki:PublicProperty.gif|}} Value ** | ** {{wiki:PublicProperty.gif|}} Value ** | ||
- | Gets or sets the Value of the node. | + | * //Gets or sets the Value of the node.// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
* Type:String | * Type:String | ||
Line 198: | Line 201: | ||
** {{wiki:PublicProperty.gif|}} IsDefaultValue ** | ** {{wiki:PublicProperty.gif|}} IsDefaultValue ** | ||
- | Gets or sets the IsDefaultValue of the node. | + | * //Gets or sets the IsDefaultValue of the node.// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
* Type:Boolean | * Type:Boolean | ||
==== Protected Properties ==== | ==== Protected Properties ==== | ||
- | ** {{wiki:ProtectedProperty.gif|}} Miw= ** | + | ** {{wiki:ProtectedProperty.gif|}} IsNonGenericSequence ** |
- | N/A | + | * //N/A// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
* Type:Boolean | * Type:Boolean | ||
- | ** {{wiki:ProtectedProperty.gif|}} NCw= ** | + | ** {{wiki:ProtectedProperty.gif|}} LastChild ** |
- | N/A | + | * //N/A// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
* Type:[[ThinkGeo.MapSuite.Core.GeoObjectNode|GeoObjectNode]] | * Type:[[ThinkGeo.MapSuite.Core.GeoObjectNode|GeoObjectNode]] | ||
- | ** {{wiki:ProtectedProperty.gif|}} Niw= ** | + | ** {{wiki:ProtectedProperty.gif|}} FirstChild ** |
- | N/A | + | * //N/A// |
== Remarks == | == Remarks == | ||
- | N/A | + | * //N/A// |
== Return Value == | == Return Value == | ||
* Type:[[ThinkGeo.MapSuite.Core.GeoObjectNode|GeoObjectNode]] | * Type:[[ThinkGeo.MapSuite.Core.GeoObjectNode|GeoObjectNode]] |