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