public void ReplaceEastAt(LongitudeCoordinate newValue, int index)
		{
			ReplaceDomElementAt("", "East", index, newValue);
		}
		public void AddEast(LongitudeCoordinate newValue)
		{
			AppendDomElement("", "East", newValue);
		}
		public void InsertEastAt(LongitudeCoordinate newValue, int index)
		{
			InsertDomElementAt("", "East", index, newValue);
		}
			public ValueEnumerator(LongitudeCoordinate par) 
			{
				parent = par;
				nIndex = -1;
			}
Exemple #5
0
 public ValueEnumerator(LongitudeCoordinate par)
 {
     parent = par;
     nIndex = -1;
 }
Exemple #6
0
 public void ReplaceEastAt(LongitudeCoordinate newValue, int index)
 {
     ReplaceDomElementAt("", "East", index, newValue);
 }
Exemple #7
0
 public void InsertEastAt(LongitudeCoordinate newValue, int index)
 {
     InsertDomElementAt("", "East", index, newValue);
 }
Exemple #8
0
 public void AddEast(LongitudeCoordinate newValue)
 {
     AppendDomElement("", "East", newValue);
 }