GetFillStyleTransparency()

Summary

Determines whether or not a fill style is transparent.

Syntax

flag = GetFillStyleTransparency(fillstyle style)

Argument Contents
style The fill style to check for transparency

Returns

"True" if the fill style is transparent; "False" if it is opaque.

Example

style = GetFillStyle()
flag = GetFillStyleTransparency(style)
if flag = "False" then do
new_style = SetFillStyleTransparency(style, "True")
SetFillStyle(,new_style)
end

See Also

Function Summary
SetFillStyleTransparency() Creates a new fill style based on the input, with the additional option of transparency