Skip to main content

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.v23.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 enumeration values.

Available values:

Name Description Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

Property Paths

You can access this nested property as listed below:

Object Type Path to Visible
TreeListDataColumn
.EditFormSettings .Visible

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