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