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