IVsPackage::GetAutomationObject Method (String^, Object^)

 

Enables a VSPackage to participate in the DTE automation object model.

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

int GetAutomationObject(
	String^ pszPropName,
	[OutAttribute] Object^% ppDisp
)

Parameters

pszPropName
Type: System::String^

[in] Pointer to a null terminated string containing the prop name.

ppDisp
Type: System::Object^

[out] Pointer to the IDispatch interface.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell.idl:

HRESULT IVsPackage::GetAutomationObject(
   [in] LPCOLESTR pszPropName,
   [out] IDispatch **ppDisp
);

This method is optional and is implemented by VSPackages that want to extend the DTE Automation object model. Essentially, you can add objects to the DTE and event sources using this method.

Return to top
Show: