示例#1
0
 public void Inserttype2At(typeType newValue, int index)
 {
     InsertDomChildAt(NodeType.Attribute, "", "type", index, newValue.ToString());
 }
示例#2
0
 public void Replacetype2At(typeType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "type", index, newValue.ToString());
 }
示例#3
0
 public void Addtype2(typeType newValue)
 {
     AppendDomChild(NodeType.Attribute, "", "type", newValue.ToString());
 }