Skip to main content
A newer version of this page is available. .

TreeListColumnEditFormSettings.Visible Property

Gets or sets whether the edit cell that corresponds to the current data column is displayed within the Edit Form.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean Visible { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

One of the DefaultBoolean enumeration values.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Property Paths

You can access this nested property as listed below:

Remarks

Edit Cells are displayed within the Edit Form. Each cell corresponds to a data column and allows its value within the edited node to be changed. If the Visible property is set to ‘False’, the edit cell isn’t displayed within the Edit Form. In this instance, end-users are not allowed to change column values.

It’s also possible to display edit cells within the Edit Form that correspond to data columns hidden within the ASPxTreeList. To do this, set the Visible property to ‘True’.

If the Visible property is set to ‘Default’, the edit cell’s visibility depends on the visibility of the data column to which it corresponds. The data column’s visibility is specified by its Visible property.

The edit cell’s position within the Edit Form is specified by the TreeListColumnEditFormSettings.VisibleIndex property.

See Also