Represents the method that will handle event for ComponentLoaded event

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

Syntax

Visual Basic (Declaration)
Public Delegate Sub ComponentLoadedHandler ( _
	control As IComponent _
)
C#
public delegate void ComponentLoadedHandler(
	IComponent control
)
Visual C++
public delegate void ComponentLoadedHandler(
	IComponent^ control
)
JavaScript
function(control);

Parameters

control
Type: System.ComponentModel..::.IComponent
currently loading control

See Also