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());
		}
Example #4
0
 public void ReplaceValueAt(ValueType2 newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Value", index, newValue.ToString());
 }
Example #5
0
 public void InsertValueAt(ValueType2 newValue, int index)
 {
     InsertDomChildAt(NodeType.Element, "", "Value", index, newValue.ToString());
 }
Example #6
0
 public void AddValue(ValueType2 newValue)
 {
     AppendDomChild(NodeType.Element, "", "Value", newValue.ToString());
 }