Example #1
0
 public XmlNode AddOpacity(OpacityType newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "Opacity", newValue.ToString());
     return null;
 }
Example #2
0
 public void InsertOpacityAt(OpacityType newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "Opacity", index, newValue.ToString());
 }
Example #3
0
 public void ReplaceOpacityAt(OpacityType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Opacity", index, newValue.ToString());
 }
Example #4
0
		public void AddOpacity(OpacityType newValue)
		{
			AppendDomChild(NodeType.Element, "", "Opacity", newValue.ToString());
		}