Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
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 AddNamedCommand3 ( _
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, _
punkImage As Object, _
dwCmdFlagsDefault As UInteger, _
cUIContexts As UInteger, _
rgguidUIContexts As Guid(), _
dwUIElementType As UInteger _
) As Integer
int AddNamedCommand3(
ref Guid pguidPackage,
ref Guid pguidCmdGroup,
string pszCmdNameCanonical,
out uint pdwCmdId,
string pszCmdNameLocalized,
string pszBtnText,
string pszCmdTooltip,
Object punkImage,
uint dwCmdFlagsDefault,
uint cUIContexts,
Guid[] rgguidUIContexts,
uint dwUIElementType
)
int AddNamedCommand3(
[InAttribute] Guid% pguidPackage,
[InAttribute] Guid% pguidCmdGroup,
[InAttribute] String^ pszCmdNameCanonical,
[OutAttribute] unsigned int% pdwCmdId,
[InAttribute] String^ pszCmdNameLocalized,
[InAttribute] String^ pszBtnText,
[InAttribute] String^ pszCmdTooltip,
[InAttribute] Object^ punkImage,
[InAttribute] unsigned int dwCmdFlagsDefault,
[InAttribute] unsigned int cUIContexts,
[InAttribute] array<Guid>^ rgguidUIContexts,
[InAttribute] unsigned int dwUIElementType
)
abstract AddNamedCommand3 :
pguidPackage:Guid byref *
pguidCmdGroup:Guid byref *
pszCmdNameCanonical:string *
pdwCmdId:uint32 byref *
pszCmdNameLocalized:string *
pszBtnText:string *
pszCmdTooltip:string *
punkImage:Object *
dwCmdFlagsDefault:uint32 *
cUIContexts:uint32 *
rgguidUIContexts:Guid[] *
dwUIElementType:uint32 -> int
function AddNamedCommand3(
pguidPackage : Guid,
pguidCmdGroup : Guid,
pszCmdNameCanonical : String,
pdwCmdId : uint,
pszCmdNameLocalized : String,
pszBtnText : String,
pszCmdTooltip : String,
punkImage : Object,
dwCmdFlagsDefault : uint,
cUIContexts : uint,
rgguidUIContexts : Guid[],
dwUIElementType : uint
) : int
Parameters
pguidPackage
Type: Guid%[in] The package GUID. Use nulla null reference (Nothing in Visual Basic) for addins.
pguidCmdGroup
Type: Guid%[in] The GUID for the group to receive the new command. Use GUID_Macro or GUID_AddIn defined in vbapkg.idl.
pszCmdNameCanonical
Type: String[in] The full name of the command.
pdwCmdId
Type: UInt32%[out] The ID for the new command.
pszCmdNameLocalized
Type: String[in] A localized version of the string. May be nulla null reference (Nothing in Visual Basic).
pszBtnText
Type: 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: String[in] The ToolTip text to display. May be nulla null reference (Nothing in Visual Basic).
dwCmdFlagsDefault
Type: UInt32[in] Use zero (0) for the default values to make the command active and visible.
cUIContexts
Type: UInt32[in] The number of contexts pointed to by the rgguidUIContexts parameter.
rgguidUIContexts
Type: array<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.
dwUIElementType
Type: UInt32[in] A value from the vsCommandControlType enumeration.
Return Value
Type: 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.