public void ReplaceRedAt(RedType2 newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "", "Red", index, newValue.ToString());
		}
		public void InsertRedAt(RedType2 newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "Red", index, newValue.ToString());
		}
		public void AddRed(RedType2 newValue)
		{
			AppendDomChild(NodeType.Element, "", "Red", newValue.ToString());
		}
 public void ReplaceRedAt(RedType2 newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Red", index, newValue.ToString());
 }
 public void InsertRedAt(RedType2 newValue, int index)
 {
     InsertDomChildAt(NodeType.Element, "", "Red", index, newValue.ToString());
 }
 public void AddRed(RedType2 newValue)
 {
     AppendDomChild(NodeType.Element, "", "Red", newValue.ToString());
 }