示例#1
0
 public void ReplaceValue2At(ValueType4 newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Value", index, newValue.ToString());
 }
示例#2
0
 public void InsertValue2At(ValueType4 newValue, int index)
 {
     InsertDomChildAt(NodeType.Element, "", "Value", index, newValue.ToString());
 }
示例#3
0
 public void AddValue2(ValueType4 newValue)
 {
     AppendDomChild(NodeType.Element, "", "Value", newValue.ToString());
 }
		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());
		}