Back to Devexpress

PopupAction Enum

aspnet-devexpress-dot-web-0c2024a5.md

latest2.7 KB
Original Source

PopupAction Enum

Specifies which action forces a popup element to appear.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public enum PopupAction
vb
Public Enum PopupAction

Members

NameDescription
None

Specifies that a popup element can’t be invoked via an end-user interaction, but can be invoked programmatically via specific client script methods.

| | LeftMouseClick |

Specifies that a popup element is invoked at a left mouse button click within the corresponding linked web control or HTML element.

| | RightMouseClick |

Specifies that a popup element is invoked on a right mouse button click within the corresponding linked web control or HTML element.

| | MouseOver |

Specifies that a popup element is invoked when the mouse cursor hovers over the corresponding linked web control or HTML element.

|

The following properties accept/return PopupAction values:

LibraryRelated API Members
ASP.NET Web Forms ControlsASPxPopupControl.PopupAction
ASPxPopupMenu.PopupAction
ASP.NET MVC ExtensionsPopupControlSettings.PopupAction
PopupMenuSettings.PopupAction

Remarks

The PopupAction enumerator contains values that specify which client action invokes a popup element (a pop menu or popup window). A client action can be applied to the popup window’s corresponding linked web control or HTML element, specified by the PopupElementID property (a popup menu’s ASPxPopupMenu.PopupElementID, a popup control’s ASPxPopupControl.PopupElementID or a popup window’s PopupWindow.PopupElementID). The values of this enumerator are used to set the corresponding control’s PopupAction property (a popup menu’s ASPxPopupMenu.PopupAction or a popup control’s ASPxPopupControl.PopupAction).

See Also

DevExpress.Web Namespace