public void ReplaceParamterAt(ParamterType newValue, int index)
 {
     ReplaceDomElementAt("", "Paramter", index, newValue);
 }
 public void InsertParamterAt(ParamterType newValue, int index)
 {
     InsertDomElementAt("", "Paramter", index, newValue);
 }
 public Value2Enumerator(ParamterType par)
 {
     parent = par;
     nIndex = -1;
 }
 public void AddParamter(ParamterType newValue)
 {
     AppendDomElement("", "Paramter", newValue);
 }
 public SizeEnumerator(ParamterType par)
 {
     parent = par;
     nIndex = -1;
 }