public void InsertShowAtStartupAt(SchemaBoolean newValue, int index) { if( newValue.IsNull() == false ) InsertDomChildAt(NodeType.Attribute, "", "ShowAtStartup", index, newValue.ToString()); }
public void InsertenabledAt(SchemaBoolean newValue, int index) { if( newValue.IsNull() == false ) InsertDomChildAt(NodeType.Attribute, "", "enabled", index, newValue.ToString()); }
public XmlNode AddShowAtStartup(SchemaBoolean newValue) { if( newValue.IsNull() == false ) return AppendDomChild(NodeType.Attribute, "", "ShowAtStartup", newValue.ToString()); return null; }
public void InsertIsUnderlinedAt(SchemaBoolean newValue, int index) { if( newValue.IsNull() == false ) InsertDomChildAt(NodeType.Element, "", "IsUnderlined", index, newValue.ToString()); }
public XmlNode Addenabled(SchemaBoolean newValue) { if( newValue.IsNull() == false ) return AppendDomChild(NodeType.Attribute, "", "enabled", newValue.ToString()); return null; }
public XmlNode AddIsUnderlined(SchemaBoolean newValue) { if( newValue.IsNull() == false ) return AppendDomChild(NodeType.Element, "", "IsUnderlined", newValue.ToString()); return null; }
public XmlNode AddShowScalarValues(SchemaBoolean newValue) { if( newValue.IsNull() == false ) return AppendDomChild(NodeType.Element, "", "ShowScalarValues", newValue.ToString()); return null; }
public void InsertShowScalarValuesAt(SchemaBoolean newValue, int index) { if( newValue.IsNull() == false ) InsertDomChildAt(NodeType.Element, "", "ShowScalarValues", index, newValue.ToString()); }
public XmlNode AddUseTransparency(SchemaBoolean newValue) { if( newValue.IsNull() == false ) return AppendDomChild(NodeType.Element, "", "UseTransparency", newValue.ToString()); return null; }
public void InsertUseTransparencyAt(SchemaBoolean newValue, int index) { if( newValue.IsNull() == false ) InsertDomChildAt(NodeType.Element, "", "UseTransparency", index, newValue.ToString()); }