IVsProfferCommands3.AddCommandBar Method

Adds a command bar to the user interface.

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

Syntax

‘선언
Function AddCommandBar ( _
    pszCmdBarName As String, _
    dwType As UInteger, _
    pCmdBarParent As Object, _
    dwIndex As UInteger, _
    <OutAttribute> ByRef ppCmdBar As Object _
) As Integer
‘사용 방법
Dim instance As IVsProfferCommands3
Dim pszCmdBarName As String
Dim dwType As UInteger
Dim pCmdBarParent As Object
Dim dwIndex As UInteger
Dim ppCmdBar As Object
Dim returnValue As Integer

returnValue = instance.AddCommandBar(pszCmdBarName, _
    dwType, pCmdBarParent, dwIndex, ppCmdBar)
int AddCommandBar(
    string pszCmdBarName,
    uint dwType,
    Object pCmdBarParent,
    uint dwIndex,
    out Object ppCmdBar
)
int AddCommandBar(
    [InAttribute] String^ pszCmdBarName, 
    [InAttribute] unsigned int dwType, 
    [InAttribute] Object^ pCmdBarParent, 
    [InAttribute] unsigned int dwIndex, 
    [OutAttribute] Object^% ppCmdBar
)
abstract AddCommandBar : 
        pszCmdBarName:string * 
        dwType:uint32 * 
        pCmdBarParent:Object * 
        dwIndex:uint32 * 
        ppCmdBar:Object byref -> int 
function AddCommandBar(
    pszCmdBarName : String, 
    dwType : uint, 
    pCmdBarParent : Object, 
    dwIndex : uint, 
    ppCmdBar : Object
) : int

Parameters

  • pszCmdBarName
    Type: System.String
    [in] The name of the command bar.
  • pCmdBarParent
    Type: System.Object
    [in] The parent of the command bar. Use nulla null reference (Nothing in Visual Basic) for a top-level command bar.
  • dwIndex
    Type: System.UInt32
    [in] Location (index) in which to insert the new command bar on the parent.

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

.NET Framework Security

See Also

Reference

IVsProfferCommands3 Interface

IVsProfferCommands3 Members

Microsoft.VisualStudio.Shell.Interop Namespace