VISIBLE keyword
Returns true if the object is visible.
Syntax
VISIBLE (object)
Parameters
- object: object (required)
Example
DIM isVisible AS BOOLEAN
isVisible = VISIBLE(myText)
IF VISIBLE(myImage) THEN
' do something
END IF
Go back to list of Keywords.