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

BoolList.Changed Event

Occurs when the BoolList‘s collection of key/value pairs has been modified.

Namespace: DevExpress.ExpressApp.Utils

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public event EventHandler<EventArgs> Changed

Event Data

The Changed event's data class is EventArgs.

Remarks

The Changed event is raised in the following cases:

  • A key/value pair is added to the BoolList‘s collection.
  • A key/value pair is removed from the BoolList‘s collection.
  • A key/value pair’s value is reassigned.

If you need to be notified when the resulting value of the BoolList is changed, handle the BoolList.ResultValue event.

See Also