Skip to main content

TreeListColumn.Visible Property

Gets or sets whether the column is visible.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
[XtraSerializablePropertyId(3)]
public virtual bool Visible { get; set; }

Property Value

Type Default Description
Boolean false

true if the column is visible; otherwise, false.

Remarks

If the Visible property is set to true, the column is visible within the Tree List. The position at which it’s displayed within the column header panel is specified by the TreeListColumn.VisibleIndex property. Otherwise, if the Visible property is set to false, the column is invisible. In this instance, the column’s header is displayed within the Customization Form, provided that the column’s TreeListOptionsColumn.ShowInCustomizationForm option is enabled.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Visible property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also