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