public void InsertnearestValueAt(EnumerationType newValue, int index) { if (newValue.IsNull() == false) { InsertDomChildAt(NodeType.Attribute, "", "nearestValue", index, newValue.ToString()); } }
public XmlNode AddnearestValue(EnumerationType newValue) { if (newValue.IsNull() == false) { return(AppendDomChild(NodeType.Attribute, "", "nearestValue", newValue.ToString())); } return(null); }
public void ReplacenearestValueAt(EnumerationType newValue, int index) { ReplaceDomChildAt(NodeType.Attribute, "", "nearestValue", index, newValue.ToString()); }
public void InsertnearestValueAt(EnumerationType newValue, int index) { if( newValue.IsNull() == false ) InsertDomChildAt(NodeType.Attribute, "", "nearestValue", index, newValue.ToString()); }
public XmlNode AddnearestValue(EnumerationType newValue) { if( newValue.IsNull() == false ) return AppendDomChild(NodeType.Attribute, "", "nearestValue", newValue.ToString()); return null; }