IDTToolsOptionsPage.OnAfterCreated(DTE) Method

Definition

Occurs immediately after a custom Tools Options page is created for the first time.

public:
 void OnAfterCreated(EnvDTE::DTE ^ DTEObject);
public:
 void OnAfterCreated(EnvDTE::DTE ^ DTEObject);
void OnAfterCreated(EnvDTE::DTE const & DTEObject);
[System.Runtime.InteropServices.DispId(1)]
public void OnAfterCreated (EnvDTE.DTE DTEObject);
[<System.Runtime.InteropServices.DispId(1)>]
abstract member OnAfterCreated : EnvDTE.DTE -> unit
Public Sub OnAfterCreated (DTEObject As DTE)

Parameters

DTEObject
DTE

The parent object of the Tools Options page, namely, a DTE object.

Attributes

Remarks

When the OnAfterCreated method's host interface is implemented, OnAfterCreated acts as an event that occurs when a Tools Options page is first created.

After OnAfterCreated occurs, the custom Tools Options page is ready to accept user input.

Applies to