aspnet-devexpress-dot-web-c6713dce.md
Specifies which action forces a popup window to appear.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public enum WindowPopupAction
Public Enum WindowPopupAction
| Name | Description |
|---|---|
None |
Specifies that a popup window can’t be invoked via an end-user interaction, but can be invoked programmatically via specific client script methods.
|
| LeftMouseClick |
Specifies that a popup window is invoked at a left mouse button click within the corresponding linked web control or HTML element.
|
| RightMouseClick |
Specifies that a popup window is invoked at a right mouse button click within the corresponding linked web control or HTML element.
|
| MouseOver |
Specifies that a popup window is invoked when the mouse cursor hovers over the corresponding linked web control or HTML element.
|
| Default |
Indicates that the popup action depends upon the popup control’s ASPxPopupControl.PopupAction property setting.
|
The following properties accept/return WindowPopupAction values:
The WindowPopupAction enumerator contains values that specify which client action invokes a popup window. A client action can be applied to the popup window’s corresponding linked web control or HTML element specified by a popup window’s PopupWindow.PopupElementID property. The values of this enumerator are used to set the popup window’s PopupWindow.PopupActionproperty.
See Also