public void ReplaceGreenAt(GreenType2 newValue, int index) { ReplaceDomChildAt(NodeType.Element, "", "Green", index, newValue.ToString()); }
public void InsertGreenAt(GreenType2 newValue, int index) { InsertDomChildAt(NodeType.Element, "", "Green", index, newValue.ToString()); }
public void AddGreen(GreenType2 newValue) { AppendDomChild(NodeType.Element, "", "Green", newValue.ToString()); }