IVsProfferCommands4.AddNamedCommand Method
Adds a named command.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (in Microsoft.VisualStudio.Shell.Interop.10.0.dll)
Syntax
'Declaration
Function AddNamedCommand ( _
ByRef pguidPackage As Guid, _
ByRef pguidCmdGroup As Guid, _
pszCmdNameCanonical As String, _
<OutAttribute> ByRef pdwCmdId As UInteger, _
pszCmdNameLocalized As String, _
pszBtnText As String, _
pszCmdTooltip As String, _
pszSatelliteDLL As String, _
dwBitmapResourceId As UInteger, _
dwBitmapImageIndex As UInteger, _
dwCmdFlagsDefault As UInteger, _
cUIContexts As UInteger, _
rgguidUIContexts As Guid() _
) As Integer
int AddNamedCommand(
ref Guid pguidPackage,
ref Guid pguidCmdGroup,
string pszCmdNameCanonical,
out uint pdwCmdId,
string pszCmdNameLocalized,
string pszBtnText,
string pszCmdTooltip,
string pszSatelliteDLL,
uint dwBitmapResourceId,
uint dwBitmapImageIndex,
uint dwCmdFlagsDefault,
uint cUIContexts,
Guid[] rgguidUIContexts
)
int AddNamedCommand(
[InAttribute] Guid% pguidPackage,
[InAttribute] Guid% pguidCmdGroup,
[InAttribute] String^ pszCmdNameCanonical,
[OutAttribute] unsigned int% pdwCmdId,
[InAttribute] String^ pszCmdNameLocalized,
[InAttribute] String^ pszBtnText,
[InAttribute] String^ pszCmdTooltip,
[InAttribute] String^ pszSatelliteDLL,
[InAttribute] unsigned int dwBitmapResourceId,
[InAttribute] unsigned int dwBitmapImageIndex,
[InAttribute] unsigned int dwCmdFlagsDefault,
[InAttribute] unsigned int cUIContexts,
[InAttribute] array<Guid>^ rgguidUIContexts
)
abstract AddNamedCommand :
pguidPackage:Guid byref *
pguidCmdGroup:Guid byref *
pszCmdNameCanonical:string *
pdwCmdId:uint32 byref *
pszCmdNameLocalized:string *
pszBtnText:string *
pszCmdTooltip:string *
pszSatelliteDLL:string *
dwBitmapResourceId:uint32 *
dwBitmapImageIndex:uint32 *
dwCmdFlagsDefault:uint32 *
cUIContexts:uint32 *
rgguidUIContexts:Guid[] -> int
function AddNamedCommand(
pguidPackage : Guid,
pguidCmdGroup : Guid,
pszCmdNameCanonical : String,
pdwCmdId : uint,
pszCmdNameLocalized : String,
pszBtnText : String,
pszCmdTooltip : String,
pszSatelliteDLL : String,
dwBitmapResourceId : uint,
dwBitmapImageIndex : uint,
dwCmdFlagsDefault : uint,
cUIContexts : uint,
rgguidUIContexts : Guid[]
) : int
Parameters
pguidPackage
Type: System.Guid%[in] The package GUID. Use nulla null reference (Nothing in Visual Basic) for addins.
pguidCmdGroup
Type: System.Guid%[in] The GUID for the group to receive the new command. Use GUID_Macro or GUID_AddIn defined in vbapkg.idl.
pszCmdNameCanonical
Type: System.String[in] The full name of the command.
pdwCmdId
Type: System.UInt32%[out] The ID for the new command.
pszCmdNameLocalized
Type: System.String[in] A localized version of the string. May be nulla null reference (Nothing in Visual Basic).
pszBtnText
Type: System.String[in] The text to display on a button. Use nulla null reference (Nothing in Visual Basic) if the added command isn't a button.
pszCmdTooltip
Type: System.String[in] The ToolTip text to display. May be nulla null reference (Nothing in Visual Basic).
pszSatelliteDLL
Type: System.String[in] The full path to a satellite DLL implementing the command. May be nulla null reference (Nothing in Visual Basic).
dwBitmapResourceId
Type: System.UInt32[in] The resource identifier of the icon to display for the command. Use zero (0) if there is no bitmap.
dwBitmapImageIndex
Type: System.UInt32[in] The index of the bitmap within the bitmap file.
dwCmdFlagsDefault
Type: System.UInt32[in] Use zero (0) for the default values to make the command active and visible.
cUIContexts
Type: System.UInt32[in] The number of contexts pointed to by the rgguidUIContexts parameter.
rgguidUIContexts
Type: array<System.Guid[][in] An array of GUIDs for the user interface contexts indicating options for displaying the command. For more information, see the UIContext_ members of VSConstants.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
.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.