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






In This Topic
    RemoveOnHide Property (Popup)
    In This Topic
    Gets or sets a value that determines whether the Popup element should be removed from the DOM when the Popup is hidden, as opposed to being hidden.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.DefaultValueAttribute(True)>
    Public Property RemoveOnHide As System.Boolean
    'Usage
     
    
    Dim instance As Popup
    Dim value As System.Boolean
     
    instance.RemoveOnHide = value
     
    value = instance.RemoveOnHide
    [System.ComponentModel.DefaultValue(true)]
    public System.bool RemoveOnHide {get; set;}
    public read-write property RemoveOnHide: System.Boolean; 
    System.ComponentModel.DefaultValueAttribute()
    public function get,set RemoveOnHide : System.boolean
    [System.ComponentModel.DefaultValue(true)]
    public: __property System.bool get_RemoveOnHide();
    public: __property void set_RemoveOnHide( 
       System.bool value
    );
    [System.ComponentModel.DefaultValue(true)]
    public:
    property System.bool RemoveOnHide {
       System.bool get();
       void set (    System.bool value);
    }
    Remarks
    This property is set to true by default.
    See Also