NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IDesignerHost.GetDesigner

Gets the designer instance for the specified component.

[Visual Basic]
Function GetDesigner( _
   ByVal component As IComponent _
) As IDesigner
[C#]
IDesigner GetDesigner(
   IComponent component
);
[C++]
IDesigner* GetDesigner(
   IComponent* component
) = 0;
[JScript]
function GetDesigner(
   component : IComponent
) : IDesigner;

Parameters

component
The System.ComponentModel.Design.IComponent to retrieve the designer for.

Return Value

An IDesigner instance, or a null reference (in Visual Basic Nothing) if there is no designer for the specified component.

See Also

IDesignerHost Interface | IDesignerHost Members | System.ComponentModel.Design Namespace