Occurs when filter conditions are changed.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
event EventHandler<EventArgs> FilterUpdated
Visual Basic
Event FilterUpdated As EventHandler(Of EventArgs)
Visual C++
 event EventHandler<EventArgs^>^ FilterUpdated {
	void add (EventHandler<EventArgs^>^ value);
	void remove (EventHandler<EventArgs^>^ value);
}
F#
abstract FilterUpdated : IEvent<EventHandler<EventArgs>,
    EventArgs>

Value

Type: System..::..EventHandler<(Of <(<'EventArgs>)>)>

Remarks

This event is raised to force the Grid to verify the state of all inserted Rows.

Thread Safety

This event may be raised from any thread. If the Grid receives a notification from the non-GUI thread, then it will synchronize the calling thread with the GUI thread in the asynchronous way without blocking the calling thread.

See Also