DesignSurfaceExtension.OnComponentCreated Method
This method is called when a new component is created but before that component is added to the designer.
Namespace: Microsoft.VisualStudio.Shell.Design
Assembly: Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)
Syntax
'Declaration
Public Overridable Sub OnComponentCreated ( _
component As IComponent _
)
public virtual void OnComponentCreated(
IComponent component
)
public:
virtual void OnComponentCreated(
IComponent^ component
)
abstract OnComponentCreated :
component:IComponent -> unit
override OnComponentCreated :
component:IComponent -> unit
public function OnComponentCreated(
component : IComponent
)
Parameters
component
Type: System.ComponentModel.IComponentThe component that has been created.
Remarks
You may freely change metadata of the component at this time. The default implementation does nothing.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.Shell.Design Namespace
DesignSurfaceExtensionAttribute