Skip to main content

TreeList.SetFocusedRowCellValue(TreeListColumn, Object) Method

Assigns a value to the specified column within the currently focused data row.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

Declaration

public void SetFocusedRowCellValue(
    TreeListColumn column,
    object value
)

Parameters

Name Type Description
column TreeListColumn

A TreeListColumn that owns the cell to which the required value will be assigned.

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