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