public void InsertGreenAt(GreenType newValue, int index) { if (newValue.IsNull() == false) { InsertDomChildAt(NodeType.Element, "", "Green", index, newValue.ToString()); } }
public XmlNode AddGreen(GreenType newValue) { if (newValue.IsNull() == false) { return(AppendDomChild(NodeType.Element, "", "Green", newValue.ToString())); } return(null); }
public void ReplaceGreenAt(GreenType newValue, int index) { ReplaceDomChildAt(NodeType.Element, "", "Green", index, newValue.ToString()); }
public void AddGreen(GreenType newValue) { AppendDomChild(NodeType.Element, "", "Green", newValue.ToString()); }
public void InsertGreenAt(GreenType newValue, int index) { if( newValue.IsNull() == false ) InsertDomChildAt(NodeType.Element, "", "Green", index, newValue.ToString()); }
public XmlNode AddGreen(GreenType newValue) { if( newValue.IsNull() == false ) return AppendDomChild(NodeType.Element, "", "Green", newValue.ToString()); return null; }
public void InsertGreenAt(GreenType newValue, int index) { InsertDomChildAt(NodeType.Element, "", "Green", index, newValue.ToString()); }