Skip to main content

CellValueChangedEventArgs Class

Provides data for the TreeList.CellValueChanged and TreeList.CellValueChanging events.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

Declaration

public class CellValueChangedEventArgs :
    CellEventArgs

Remarks

The TreeList.CellValueChanged and TreeList.CellValueChanging events fire in response to cell value modifications. The CellValueChangedEventArgs class gives you information about the cell and its new value. It is derived from the CellEventArgs class to provide data about the cell via the inherited NodeEventArgs.Node and CellEventArgs.Column properties. The CellValueChangedEventArgs.Value property is introduced to provide access to the newly assigned cell value.

CellValueChangedEventArgs objects with proper settings are automatically created and transmitted to TreeList.CellValueChanged and TreeList.CellValueChanging event handlers.

See Also