Skip to main content

ResourcesTree.Columns Property

Provides access to a collection of ResourcesTree columns.

Namespace: DevExpress.XtraScheduler.UI

Assembly: DevExpress.XtraScheduler.v23.2.Extensions.dll

NuGet Package: DevExpress.Win.SchedulerExtensions

Declaration

[Browsable(false)]
[XtraSerializableProperty(true, true, true)]
public ResourceTreeColumnCollection Columns { get; }

Property Value

Type Description
DevExpress.XtraScheduler.Native.ResourceTreeColumnCollection

A ResourceTreeColumnCollection object that is a collection of all the columns within a resources tree control.

Remarks

This property provides access to all the columns present in the Resources Tree control. It allows you to add and delete columns using the appropriate methods. Individual columns can be accessed using indexed notation or the bound field name as parameters.

Since the ResourcesTree inherits from the Tree List control, you can learn about columns in the Columns topic.

See Also