Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TreeListNode.Item[Object] Property

Gets or sets a value for a specific column.

Namespace: DevExpress.XtraTreeList.Nodes

Assembly: DevExpress.XtraTreeList.v24.2.dll

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

#Declaration

[DXCategory("Data")]
public virtual object this[object columnID] { get; set; }

#Parameters

Name Type Description
columnID Object

An object that identifies a column (a TreeListColumn object, field name, column’s absolute index or corresponding DataColumn object).

#Property Value

Type Description
Object

The value for a specific column.

#Remarks

The columnID argument identifies the column for which to get or set a value. The following objects and values can be passed as column identifiers:

#Example

The next example demonstrates how to access a focused node value in the column which is identified by the TreeListColumn.AbsoluteIndex property set to 0.

Two ways are provided to perform this operation: via the TreeListNode.Item property and TreeListNode.SetValue method.

//first method
treeList1.FocusedNode.SetValue(0, "new value");
//second method
treeList1.FocusedNode[0] = "new value";
See Also