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