Represents the method that will handle event for filtering component data

Namespace:  Greatis.FormDesigner
Assembly:  Greatis.FormDesigner (in Greatis.FormDesigner.dll)

Syntax

Visual Basic (Declaration)
Public Delegate Sub FilterEventHandler ( _
	component As IComponent, _
	ByRef args As FilterEventArgs _
)
C#
public delegate void FilterEventHandler(
	IComponent component,
	ref FilterEventArgs args
)
Visual C++
public delegate void FilterEventHandler(
	IComponent^ component, 
	FilterEventArgs% args
)
JavaScript
function(component, args);

Parameters

component
Type: System.ComponentModel..::.IComponent
Processed component
args
Type: Greatis.FormDesigner..::.FilterEventArgs %
A FilterEventArgs that contains the event data.

See Also