TreeListBandCollection.ForEach(Action<TreeListBand>) Method
In This Article
Executes the specified action on each element of the collection.
Namespace: DevExpress.XtraTreeList.Columns
Assembly: DevExpress.XtraTreeList.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList
#Declaration
public void ForEach(
Action<TreeListBand> action
)
#Parameters
Name | Type | Description |
---|---|---|
action | Action<Tree |
The delegate to execute on each element of the collection. |
#Example
The code below converts all column headers to uppercase.
See Also