Share via


DesignSurfaceExtension.OnDesignerCreated Method (IComponent, IDesigner, Boolean)

This method is called when a new designer is created.

Namespace:  Microsoft.VisualStudio.Shell.Design
Assembly:  Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)

Syntax

'Declaration
Public Overridable Sub OnDesignerCreated ( _
    component As IComponent, _
    designer As IDesigner, _
    rootDesigner As Boolean _
)
public virtual void OnDesignerCreated(
    IComponent component,
    IDesigner designer,
    bool rootDesigner
)
public:
virtual void OnDesignerCreated(
    IComponent^ component, 
    IDesigner^ designer, 
    bool rootDesigner
)
abstract OnDesignerCreated : 
        component:IComponent * 
        designer:IDesigner * 
        rootDesigner:bool -> unit  
override OnDesignerCreated : 
        component:IComponent * 
        designer:IDesigner * 
        rootDesigner:bool -> unit
public function OnDesignerCreated(
    component : IComponent, 
    designer : IDesigner, 
    rootDesigner : boolean
)

Parameters

  • component
    Type: IComponent

    The component that has been created.

  • designer
    Type: IDesigner

    The designer that has been created.

  • rootDesigner
    Type: Boolean

    The root designer.

Exceptions

Exception Condition
ArgumentNullException

designer is nulla null reference (Nothing in Visual Basic).

Remarks

You may freely change metadata of the designer at this time. The default implementation does nothing.

.NET Framework Security

See Also

Reference

DesignSurfaceExtension Class

OnDesignerCreated Overload

Microsoft.VisualStudio.Shell.Design Namespace

DesignSurfaceExtensionAttribute

DesignSurfaceExtension

DesignSurface

IDesigner

IDesignerHost

Other Resources

Extending Design-Time Support