Example #1
0
 public XmlNode AddScaleFactor(ScaleFactorType2 newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "ScaleFactor", newValue.ToString());
     return null;
 }
Example #2
0
 public void InsertScaleFactorAt(ScaleFactorType2 newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "ScaleFactor", index, newValue.ToString());
 }
Example #3
0
 public void ReplaceScaleFactorAt(ScaleFactorType2 newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "ScaleFactor", index, newValue.ToString());
 }
Example #4
0
		public void AddScaleFactor(ScaleFactorType2 newValue)
		{
			AppendDomChild(NodeType.Element, "", "ScaleFactor", newValue.ToString());
		}