示例#1
0
		public void ReplaceDistanceAboveSurfaceAt(DistanceAboveSurfaceType newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "", "DistanceAboveSurface", index, newValue.ToString());
		}
示例#2
0
 public XmlNode AddDistanceAboveSurface(DistanceAboveSurfaceType newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "DistanceAboveSurface", newValue.ToString());
     return null;
 }
示例#3
0
		public void AddDistanceAboveSurface(DistanceAboveSurfaceType newValue)
		{
			AppendDomChild(NodeType.Element, "", "DistanceAboveSurface", newValue.ToString());
		}
示例#4
0
 public void InsertDistanceAboveSurfaceAt(DistanceAboveSurfaceType newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "DistanceAboveSurface", index, newValue.ToString());
 }