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