示例#1
0
 public ValueEnumerator(LatitudeCoordinate par)
 {
     parent = par;
     nIndex = -1;
 }
		public void InsertSouthAt(LatitudeCoordinate newValue, int index)
		{
			InsertDomElementAt("", "South", index, newValue);
		}
		public void ReplaceSouthAt(LatitudeCoordinate newValue, int index)
		{
			ReplaceDomElementAt("", "South", index, newValue);
		}
		public void AddSouth(LatitudeCoordinate newValue)
		{
			AppendDomElement("", "South", newValue);
		}
			public ValueEnumerator(LatitudeCoordinate par) 
			{
				parent = par;
				nIndex = -1;
			}
示例#6
0
 public void ReplaceSouthAt(LatitudeCoordinate newValue, int index)
 {
     ReplaceDomElementAt("", "South", index, newValue);
 }
示例#7
0
 public void InsertSouthAt(LatitudeCoordinate newValue, int index)
 {
     InsertDomElementAt("", "South", index, newValue);
 }
示例#8
0
 public void AddSouth(LatitudeCoordinate newValue)
 {
     AppendDomElement("", "South", newValue);
 }