Share via


FormControl.isDisplayed Method

Definition

Retrieves a value that indicates whether the control is displayed.

public:
 virtual bool isDisplayed();
public virtual bool isDisplayed ();
abstract member isDisplayed : unit -> bool
override this.isDisplayed : unit -> bool
Public Overridable Function isDisplayed () As Boolean

Returns

true if the control is displayed; otherwise, false.

Remarks

To modify the visible state of the control, call the visible method.

The following example shows how to determine whether a control is visible.

info(strfmt("isDisplayed: %1", this.isDisplayed()));

Applies to