public void ReplaceValue2At(ValueType4 newValue, int index) { ReplaceDomChildAt(NodeType.Element, "", "Value", index, newValue.ToString()); }
public void InsertValue2At(ValueType4 newValue, int index) { InsertDomChildAt(NodeType.Element, "", "Value", index, newValue.ToString()); }
public void AddValue2(ValueType4 newValue) { AppendDomChild(NodeType.Element, "", "Value", newValue.ToString()); }