Occurs when filter conditions are changed.
Namespace: Dapfor.Net.FiltersAssembly: 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..::..FilterUpdatedRemarks
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