The Type property returns or specifies the type of a transparency. The Type property returns a read-only value of cdrTransparencyType.
Examples:
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