public XmlNode AddDistanceAboveSurface(DistanceAboveSurfaceType2 newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "DistanceAboveSurface", newValue.ToString());
     return null;
 }
 public void InsertDistanceAboveSurfaceAt(DistanceAboveSurfaceType2 newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "DistanceAboveSurface", index, newValue.ToString());
 }
 public void ReplaceDistanceAboveSurfaceAt(DistanceAboveSurfaceType2 newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "DistanceAboveSurface", index, newValue.ToString());
 }
		public void AddDistanceAboveSurface(DistanceAboveSurfaceType2 newValue)
		{
			AppendDomChild(NodeType.Element, "", "DistanceAboveSurface", newValue.ToString());
		}