TreeList.SetFocusedRowCellValue(TreeListColumn, Object) Method
In This Article
Assigns a value to the specified column within the currently focused data row.
Namespace: DevExpress.XtraTreeList
Assembly: DevExpress.XtraTreeList.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList
#Declaration
public void SetFocusedRowCellValue(
TreeListColumn column,
object value
)
#Parameters
Name | Type | Description |
---|---|---|
column | Tree |
A Tree |
value | Object | An Object that is the value to be assigned. |
#Remarks
Call the TreeList.GetFocusedRow method to retrieve the currently focused Tree List row.
To assign a value to the focused cell, utilize the TreeList.SetFocusedValue method instead. Finally, you can call the TreeList.SetRowCellValue method to set a value for a cell owned by any existing row.
See Also