public void ReplaceValueAt(ValueType2 newValue, int index) { ReplaceDomChildAt(NodeType.Element, "", "Value", index, newValue.ToString()); }
public void InsertValueAt(ValueType2 newValue, int index) { InsertDomChildAt(NodeType.Element, "", "Value", index, newValue.ToString()); }
public void AddValue(ValueType2 newValue) { AppendDomChild(NodeType.Element, "", "Value", newValue.ToString()); }