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