Returns a specific output group.
Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
声明
Function OpenOutputGroup ( _
    szCanonicalName As String, _
    <OutAttribute> ByRef ppIVsOutputGroup As IVsOutputGroup _
) As Integer
用法
Dim instance As IVsProjectCfg2
Dim szCanonicalName As String
Dim ppIVsOutputGroup As IVsOutputGroup
Dim returnValue As Integer
returnValue = instance.OpenOutputGroup(szCanonicalName, _
    ppIVsOutputGroup)
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: 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.
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.