public XmlNode AddnorthBoundLatitude(latitudeType newValue)
 {
     if (newValue.IsNull() == false)
     {
         return(AppendDomChild(NodeType.Element, "http://www.opengis.net/wms", "northBoundLatitude", newValue.ToString()));
     }
     return(null);
 }
Example #2
0
 public void ReplacenorthBoundLatitudeAt(latitudeType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "northBoundLatitude", index, newValue.ToString());
 }
Example #3
0
 public void AddnorthBoundLatitude(latitudeType newValue)
 {
     AppendDomChild(NodeType.Element, "http://www.opengis.net/wms", "northBoundLatitude", newValue.ToString());
 }
Example #4
0
 public void InsertsouthBoundLatitudeAt(latitudeType newValue, int index)
 {
     InsertDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "southBoundLatitude", index, newValue.ToString());
 }
		public void ReplacenorthBoundLatitudeAt(latitudeType newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "northBoundLatitude", index, newValue.ToString());
		}
		public void AddnorthBoundLatitude(latitudeType newValue)
		{
			AppendDomChild(NodeType.Element, "http://www.opengis.net/wms", "northBoundLatitude", newValue.ToString());
		}
		public void InsertsouthBoundLatitudeAt(latitudeType newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "southBoundLatitude", index, newValue.ToString());
		}