public void ReplaceScaleFactorAt(ScaleFactorType newValue, int index) { ReplaceDomChildAt(NodeType.Element, "", "ScaleFactor", index, newValue.ToString()); }
public void AddScaleFactor(ScaleFactorType newValue) { AppendDomChild(NodeType.Element, "", "ScaleFactor", newValue.ToString()); }
public void InsertScaleFactorAt(ScaleFactorType newValue, int index) { InsertDomChildAt(NodeType.Element, "", "ScaleFactor", index, newValue.ToString()); }
public XmlNode AddScaleFactor(ScaleFactorType newValue) { if( newValue.IsNull() == false ) return AppendDomChild(NodeType.Element, "", "ScaleFactor", newValue.ToString()); return null; }