Esempio n. 1
0
 public void InsertdistanceabovesurfaceAt(SchemaInt newValue, int index)
 {
     if (newValue.IsNull() == false)
     {
         InsertDomChildAt(NodeType.Attribute, "", "distanceabovesurface", index, newValue.ToString());
     }
 }
Esempio n. 2
0
 public void InsertlevelsAt(SchemaInt newValue, int index)
 {
     if (newValue.IsNull() == false)
     {
         InsertDomChildAt(NodeType.Attribute, "", "levels", index, newValue.ToString());
     }
 }
Esempio n. 3
0
 public void InsertSecondsAt(SchemaInt newValue, int index)
 {
     if (newValue.IsNull() == false)
     {
         InsertDomChildAt(NodeType.Element, "", "Seconds", index, newValue.ToString());
     }
 }
Esempio n. 4
0
 public XmlNode Adddistanceabovesurface(SchemaInt newValue)
 {
     if (newValue.IsNull() == false)
     {
         return(AppendDomChild(NodeType.Attribute, "", "distanceabovesurface", newValue.ToString()));
     }
     return(null);
 }
Esempio n. 5
0
 public XmlNode Addlevels(SchemaInt newValue)
 {
     if (newValue.IsNull() == false)
     {
         return(AppendDomChild(NodeType.Attribute, "", "levels", newValue.ToString()));
     }
     return(null);
 }
Esempio n. 6
0
 public XmlNode AddSeconds(SchemaInt newValue)
 {
     if (newValue.IsNull() == false)
     {
         return(AppendDomChild(NodeType.Element, "", "Seconds", newValue.ToString()));
     }
     return(null);
 }