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