Occurs when the filter's conditions are changed.

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

Syntax

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

Value

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

Implements

IFilter..::..FilterUpdated

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