Class App : isFullyVisible Method


Boolean isFullyVisible()

Summary

Determine whether the main window for the application is fully visible or not.


Returns


Returns TRUE only if the window is not obscured by any other. If its partially visible, completely hidden or minimised it will return FALSE.


Examples

if( app.isFullyVisible() )
{
alert( "Visible" );
}


Requirements

1122