IVsProfferCommands4.AddCommandBar Method (String, UInt32, Object, UInt32, Object%)

Adds a command bar to the user interface.

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

Syntax

'Declaración
Function AddCommandBar ( _
    pszCmdBarName As String, _
    dwType As UInteger, _
    pCmdBarParent As Object, _
    dwIndex As UInteger, _
    <OutAttribute> ByRef ppCmdBar As Object _
) As Integer
'Uso
Dim instance As IVsProfferCommands4
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] The index location at 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.

Implements

IVsProfferCommands3.AddCommandBar(String, UInt32, Object, UInt32, Object%)

.NET Framework Security

See Also

Reference

IVsProfferCommands4 Interface

IVsProfferCommands4 Members

AddCommandBar Overload

Microsoft.VisualStudio.Shell.Interop Namespace