public void InsertheightAt(SchemaLong newValue, int index) { if (newValue.IsNull() == false) { InsertDomChildAt(NodeType.Attribute, "", "height", index, newValue.ToString()); } }
public void InsertHoursAt(SchemaLong newValue, int index) { if (newValue.IsNull() == false) { InsertDomChildAt(NodeType.Element, "", "Hours", index, newValue.ToString()); } }
public XmlNode Addheight(SchemaLong newValue) { if (newValue.IsNull() == false) { return(AppendDomChild(NodeType.Attribute, "", "height", newValue.ToString())); } return(null); }
public XmlNode AddHours(SchemaLong newValue) { if (newValue.IsNull() == false) { return(AppendDomChild(NodeType.Element, "", "Hours", newValue.ToString())); } return(null); }