IVsProjectCfg2::OpenOutputGroup Method (String^, IVsOutputGroup^)
Visual Studio 2015
Returns a specific output group.
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::Int32If 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
);
Show: