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