Chapter Contents

Previous

Next
Widget Class: _isHidden

Widget Class: _isHidden



Reports whether a widget is currently hidden in the window


Syntax
Details

Syntax

objectName._isHidden( ishidden );

Argument Type Use Description
ishidden Numeric Output returns a value indicating whether the widget is hidden: 1 is hidden, 0 is not hidden


Details

_isHidden returns only whether a widget is hidden. It does not return whether a widget is swapped out or scrolled out of view.

Example

_isHidden determines whether a widget named update is hidden:

update._isHidden('isHidden');
if isHidden then
   put 'the update button is hidden';
else
   put 'the update button is visible';


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.