Represents the method that create components
Namespace:
Greatis.FormDesignerAssembly: Greatis.FormDesigner (in Greatis.FormDesigner.dll)
Syntax
| Visual Basic (Declaration) |
|---|
Public Delegate Function CreateComponentsCallback ( _ format As String, _ serializedObject As Object, _ host As IDesignerHost _ ) As IComponent() |
| C# |
|---|
public delegate IComponent[] CreateComponentsCallback( string format, Object serializedObject, IDesignerHost host ) |
| Visual C++ |
|---|
public delegate array<IComponent^>^ CreateComponentsCallback( String^ format, Object^ serializedObject, IDesignerHost^ host ) |
| JavaScript |
|---|
function(format, serializedObject, host); |
Parameters
- format
- Type: System..::.String
The data format that the creator handles.
- serializedObject
- Type: System..::.Object
The object which contains the data to create a components
- host
- Type: System.ComponentModel.Design..::.IDesignerHost
The IDesignerHost to host the components