ASP.NET Core MVC Controls | ComponentOne
C1.AspNetCore.Mvc Assembly / C1.Web.Mvc Namespace / PopupTrigger Enumeration

In This Topic
    PopupTrigger Enumeration
    In This Topic
    Specifies actions that trigger showing and hiding Popup controls.
    Syntax
    'Declaration
     
    Public Enum PopupTrigger 
       Inherits System.Enum
    public enum PopupTrigger : System.Enum 
    Members
    MemberDescription
    BlurWhen the owner element or the popup lose focus.
    BlurOwnerWhen the owner element loses focus.
    BlurPopupWhen the popup loses focus.
    ClickWhen the user clicks the owner element or the popup.
    ClickOrBlurWhen the owner element or the popup are clicked or lose focus.
    ClickOwnerWhen the user clicks the owner element.
    ClickPopupWhen the user clicks the popup.
    DownWhen the mouse button is pressed over the owner element or the popup.
    DownOwnerWhen the mouse button is pressed over the owner element.
    DownPopupWhen the mouse button is pressed over the popup.
    EnterWhen the mouse enters the owner element or the popup.
    EnterOwnerWhen the mouse enters the owner element.
    EnterPopupWhen the mouse enters the popup.
    LeaveWhen the mouse leaves the owner element or the popup.
    LeaveOwnerWhen the mouse leaves the owner element.
    LeavePopupWhen the mouse leaves the popup.
    NoneNo triggers; popups must be shown and hidden using code.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Web.Mvc.PopupTrigger

    See Also