예제 #1
0
		public void ReplaceBlueAt(BlueType2 newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
		}
예제 #2
0
		public void InsertBlueAt(BlueType2 newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
		}
예제 #3
0
		public void AddBlue(BlueType2 newValue)
		{
			AppendDomChild(NodeType.Element, "", "Blue", newValue.ToString());
		}
예제 #4
0
 public void ReplaceBlueAt(BlueType2 newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
 }
예제 #5
0
 public void InsertBlueAt(BlueType2 newValue, int index)
 {
     InsertDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
 }
예제 #6
0
 public void AddBlue(BlueType2 newValue)
 {
     AppendDomChild(NodeType.Element, "", "Blue", newValue.ToString());
 }