ASPxHtmlEditor.ClientVisible Property
Gets or sets a value that specifies the initial visibility state of a web control on the client.
Namespace: DevExpress.Web.ASPxHtmlEditor
Assembly: DevExpress.Web.ASPxHtmlEditor.v18.2.dll
Declaration
[DefaultValue(true)]
public bool ClientVisible { get; set; }
<DefaultValue(True)>
Public Property ClientVisible As Boolean
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
true to make a web control initially displayed on the client; false to render the control into the web page, but make it initially hidden on the client side. |
Remarks
Use the ClientVisible property to define a web control's initial visibility state. The control's visibility can then be dynamically changed on the client side using the ASPxClientControlBase.SetVisible method.
NOTE
If a web control's server Visible property is set to false, the control is not rendered into the web page at all, so it can't be manipulated on the client side.