示例#1
0
 public void Inserttype2At(EnumerationType5 newValue, int index)
 {
     if (newValue.IsNull() == false)
     {
         InsertDomChildAt(NodeType.Attribute, "", "type", index, newValue.ToString());
     }
 }
示例#2
0
 public XmlNode Addtype2(EnumerationType5 newValue)
 {
     if (newValue.IsNull() == false)
     {
         return(AppendDomChild(NodeType.Attribute, "", "type", newValue.ToString()));
     }
     return(null);
 }
示例#3
0
 public void Replacetype2At(EnumerationType5 newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "type", index, newValue.ToString());
 }