Skip to main content
A newer version of this page is available. .

CellValueChangedEventArgs Class

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

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.1.dll

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the CellValueChangedEventArgs class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also