Enables or disables the transparency | |
Syntax: | Boolean =
object.Transparency object.Transparency = Boolean |
Description: | We can Enable or Disable the Transparency using this property. Example: Sub GefImageFormat_Transparency() Dim oCimObj As GefObject Dim oCimImageFmt As
GefImageFormat Set oCimObj = CimGetObject Set oCimImageFmt =
oCimObj.ImageFormat If Not oCimImageFmt Is Nothing
Then he oCimImageFmt.Transparency
= True CimGetScreen.Refresh
False End If End Sub |