Represents the method that will handle event for allowing design component

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

Syntax

Visual Basic (Declaration)
Public Delegate Function AllowDesignHandler ( _
	component As IComponent _
) As Boolean
C#
public delegate bool AllowDesignHandler(
	IComponent component
)
Visual C++
public delegate bool AllowDesignHandler(
	IComponent^ component
)
JavaScript
function(component);

Parameters

component
Type: System.ComponentModel..::.IComponent
designed component

Return Value

true for allowing design component

See Also