public void Inserttype2At(typeType newValue, int index) { InsertDomChildAt(NodeType.Attribute, "", "type", index, newValue.ToString()); }
public void Replacetype2At(typeType newValue, int index) { ReplaceDomChildAt(NodeType.Attribute, "", "type", index, newValue.ToString()); }
public void Addtype2(typeType newValue) { AppendDomChild(NodeType.Attribute, "", "type", newValue.ToString()); }