ClipboardCommandSet.ProcessOnStatusCutCommand Method
Called to determine whether the Cut command should be enabled and visible on a menu. If you override this method, set cmd.Enabled and cmd.Visible.
Namespace: Microsoft.VisualStudio.Modeling.Shell
Assembly: Microsoft.VisualStudio.Modeling.Sdk.Shell.10.0 (in Microsoft.VisualStudio.Modeling.Sdk.Shell.10.0.dll)
Syntax
'Declaration
Protected Overridable Sub ProcessOnStatusCutCommand ( _
cmd As MenuCommand _
)
protected virtual void ProcessOnStatusCutCommand(
MenuCommand cmd
)
protected:
virtual void ProcessOnStatusCutCommand(
MenuCommand^ cmd
)
abstract ProcessOnStatusCutCommand :
cmd:MenuCommand -> unit
override ProcessOnStatusCutCommand :
cmd:MenuCommand -> unit
protected function ProcessOnStatusCutCommand(
cmd : MenuCommand
)
Parameters
- cmd
Type: System.ComponentModel.Design.MenuCommand
Remarks
Called when the user right-clicks over the diagram. The default behavior is that it is visible when the current selection is an item in a compartment shape. To specify whether the command is visible and enabled on the menu, override this method and set the Visible and Enabled properties of the command parameter. You will normally want to use this.CurrentSelection to help you determine whether the menu command should appear.
.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.