IVsProjectCfg2::OpenOutputGroup Method (String^, IVsOutputGroup^)

 

Returns a specific output group.

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

int OpenOutputGroup(
	String^ szCanonicalName,
	[OutAttribute] IVsOutputGroup^% ppIVsOutputGroup
)

Parameters

szCanonicalName
Type: System::String^

[in] Canonical name of the configuration such as Debug or Release.

ppIVsOutputGroup
Type: Microsoft.VisualStudio.Shell.Interop::IVsOutputGroup^

[out] Pointer to a pointer to the IVsOutputGroup object that will be instantiated for the output group.

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 IVsProjectCfg2::OpenOutputGroup(
   [in] LPCOLESTR szCanonicalName,
   [out] IVsOutputGroup **ppIVsOutputGroup
);
Return to top
Show: