Esempio n. 1
0
 public void InsertShowAtStartupAt(SchemaBoolean newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Attribute, "", "ShowAtStartup", index, newValue.ToString());
 }
Esempio n. 2
0
 public void InsertenabledAt(SchemaBoolean newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Attribute, "", "enabled", index, newValue.ToString());
 }
Esempio n. 3
0
 public XmlNode AddShowAtStartup(SchemaBoolean newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Attribute, "", "ShowAtStartup", newValue.ToString());
     return null;
 }
Esempio n. 4
0
 public void InsertIsUnderlinedAt(SchemaBoolean newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "IsUnderlined", index, newValue.ToString());
 }
Esempio n. 5
0
 public XmlNode Addenabled(SchemaBoolean newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Attribute, "", "enabled", newValue.ToString());
     return null;
 }
Esempio n. 6
0
 public XmlNode AddIsUnderlined(SchemaBoolean newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "IsUnderlined", newValue.ToString());
     return null;
 }
Esempio n. 7
0
 public XmlNode AddShowScalarValues(SchemaBoolean newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "ShowScalarValues", newValue.ToString());
     return null;
 }
Esempio n. 8
0
 public void InsertShowScalarValuesAt(SchemaBoolean newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "ShowScalarValues", index, newValue.ToString());
 }
Esempio n. 9
0
 public XmlNode AddUseTransparency(SchemaBoolean newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "UseTransparency", newValue.ToString());
     return null;
 }
Esempio n. 10
0
 public void InsertUseTransparencyAt(SchemaBoolean newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "UseTransparency", index, newValue.ToString());
 }