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

CellValueChangedEventArgs Class

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

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.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