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






In This Topic
    IsResizable Property (Popup)
    In This Topic
    Gets or sets a value that determines whether the popup can be resized by dragging its edges with the mouse.
    Syntax
    'Declaration
     
    
    Public Property IsResizable As System.Boolean
    'Usage
     
    
    Dim instance As Popup
    Dim value As System.Boolean
     
    instance.IsResizable = value
     
    value = instance.IsResizable
    public System.bool IsResizable {get; set;}
    public read-write property IsResizable: System.Boolean; 
    public function get,set IsResizable : System.boolean
    public: __property System.bool get_IsResizable();
    public: __property void set_IsResizable( 
       System.bool value
    );
    public:
    property System.bool IsResizable {
       System.bool get();
       void set (    System.bool value);
    }
    Remarks
    You can limit the size of the popup by setting the host element's max-width, min-width, max-height, and min-height CSS properties.
    See Also