Intersoft ClientUI Documentation
IsOpen Property (UXPopup)



Gets or sets whether the popup is currently displaying on the screen.
Syntax
<CategoryAttribute("Common Properties")>
Public Property IsOpen As Boolean
Dim instance As UXPopup
Dim value As Boolean
 
instance.IsOpen = value
 
value = instance.IsOpen
[CategoryAttribute("Common Properties")]
public bool IsOpen {get; set;}
[CategoryAttribute("Common Properties")]
public:
property bool IsOpen {
   bool get();
   void set (    bool value);
}
Remarks

UXPopup control displays its content when the IsOpen property is set to True. By default there will be an overlay element that blocks the entire application so that if the user click at any elements outside the UXPopup contents, the UXPopup will be closed.

You can change this default behavior by setting the DisableOverlay property to True. Furthermore you can also used the StaysOpen property if you want to always display the UXPopup.

The Opened and Closed events are raised when the UXPopup is open or closed.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

UXPopup Class
UXPopup Members

Concepts

Popup Overview

Send Feedback