ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / Popup Class / IsDraggable Property






In This Topic
    IsDraggable Property (Popup)
    In This Topic
    Gets or sets a value that determines whether the popup can be dragged with the mouse by its header.
    Syntax
    'Declaration
     
    
    Public Property IsDraggable As System.Boolean
    'Usage
     
    
    Dim instance As Popup
    Dim value As System.Boolean
     
    instance.IsDraggable = value
     
    value = instance.IsDraggable
    public System.bool IsDraggable {get; set;}
    public read-write property IsDraggable: System.Boolean; 
    public function get,set IsDraggable : System.boolean
    public: __property System.bool get_IsDraggable();
    public: __property void set_IsDraggable( 
       System.bool value
    );
    public:
    property System.bool IsDraggable {
       System.bool get();
       void set (    System.bool value);
    }
    Remarks
    The header is identified by the '.wj-dialog-header' CSS selector. If the dialog does not contain any elements with the 'wj-dialog-header' class, user will not be able to drag the popup.
    See Also