Object Model Reference : Classes : T : Transparency : Properties : Transparency.Type |
Property Type As cdrTransparencyType
Member of Transparency
The Type property returns or specifies the type of a transparency.
The Type property returns a read-only value of cdrTransparencyType.
The following VBA example removes all fountain transparencies.
Sub Test() |
Dim s As Shape |
For Each s In ActivePage.Shapes |
If s.Transparency.Type <> cdrFountainTransparency Then |
s.Transparency.ApplyNoTransparency |
End If |
Next s |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.