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