IVsProjectCfg2.OpenOutputGroup Method
Returns a specific output group.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function OpenOutputGroup ( _
szCanonicalName As String, _
<OutAttribute> ByRef ppIVsOutputGroup As IVsOutputGroup _
) As Integer
int OpenOutputGroup(
string szCanonicalName,
out IVsOutputGroup ppIVsOutputGroup
)
int OpenOutputGroup(
[InAttribute] String^ szCanonicalName,
[OutAttribute] IVsOutputGroup^% ppIVsOutputGroup
)
abstract OpenOutputGroup :
szCanonicalName:string *
ppIVsOutputGroup:IVsOutputGroup byref -> int
function OpenOutputGroup(
szCanonicalName : String,
ppIVsOutputGroup : IVsOutputGroup
) : int
Parameters
szCanonicalName
Type: 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: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsProjectCfg2::OpenOutputGroup(
[in] LPCOLESTR szCanonicalName,
[out] IVsOutputGroup **ppIVsOutputGroup
);
.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.