public void ReplaceBlueAt(BlueType2 newValue, int index) { ReplaceDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString()); }
public void InsertBlueAt(BlueType2 newValue, int index) { InsertDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString()); }
public void AddBlue(BlueType2 newValue) { AppendDomChild(NodeType.Element, "", "Blue", newValue.ToString()); }