public void InserteastBoundLongitudeAt(longitudeType newValue, int index)
 {
     if (newValue.IsNull() == false)
     {
         InsertDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "eastBoundLongitude", index, newValue.ToString());
     }
 }
 public XmlNode AddeastBoundLongitude(longitudeType newValue)
 {
     if (newValue.IsNull() == false)
     {
         return(AppendDomChild(NodeType.Element, "http://www.opengis.net/wms", "eastBoundLongitude", newValue.ToString()));
     }
     return(null);
 }
Example #3
0
 public void ReplaceeastBoundLongitudeAt(longitudeType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "eastBoundLongitude", index, newValue.ToString());
 }
Example #4
0
 public void AddeastBoundLongitude(longitudeType newValue)
 {
     AppendDomChild(NodeType.Element, "http://www.opengis.net/wms", "eastBoundLongitude", newValue.ToString());
 }
Example #5
0
 public void InsertwestBoundLongitudeAt(longitudeType newValue, int index)
 {
     InsertDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "westBoundLongitude", index, newValue.ToString());
 }
		public void ReplaceeastBoundLongitudeAt(longitudeType newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "eastBoundLongitude", index, newValue.ToString());
		}
		public void AddeastBoundLongitude(longitudeType newValue)
		{
			AppendDomChild(NodeType.Element, "http://www.opengis.net/wms", "eastBoundLongitude", newValue.ToString());
		}
		public void InsertwestBoundLongitudeAt(longitudeType newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "westBoundLongitude", index, newValue.ToString());
		}