Example #1
0
 public void InsertnoSubsetsAt(EnumerationType4 newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Attribute, "", "noSubsets", index, newValue.ToString());
 }
Example #2
0
 public void ReplacenoSubsetsAt(EnumerationType4 newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "noSubsets", index, newValue.ToString());
 }
Example #3
0
 public XmlNode AddnoSubsets(EnumerationType4 newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Attribute, "", "noSubsets", newValue.ToString());
     return null;
 }