Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets an object providing events fired when the supplied CommandBarControl object is clicked.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property CommandBarEvents ( _
CommandBarControl As Object _
) As Object
Object this[
Object CommandBarControl
] { get; }
property Object^ CommandBarEvents[[InAttribute] Object^ CommandBarControl] {
Object^ get ([InAttribute] Object^ CommandBarControl);
}
abstract CommandBarEvents : Object
JScript does not support indexed properties.
Parameters
- CommandBarControl
Type: System.Object
Required. The CommandBar control that causes the event to fire.
Property Value
Type: System.Object
A CommandBarEvents object.
Remarks
The CommandBarEvents property is used by an Add-in to connect an event with a click of a Microsoft.VisualStudio.CommandBars.CommandBarControl object, or to connect to the Click event of any member of the Microsoft.VisualStudio.CommandBars.CommandBarControls collection.
The Add-in must set the OnAction property to some string value. It can set this value after the CommandBarEvents property is called, and can reset it to a blank string, which disconnects the event. If an Add-in creates a control and fails to set the OnAction property to some valid string value, then no event is raised on the event object returned by the CommandBarEvents property.
.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.