WorkflowDesignerMessageFilter.OnShowContextMenu(Point) Method

Definition

Occurs when the workflow should show a context menu.

protected:
 virtual bool OnShowContextMenu(System::Drawing::Point screenMenuPoint);
protected virtual bool OnShowContextMenu (System.Drawing.Point screenMenuPoint);
abstract member OnShowContextMenu : System.Drawing.Point -> bool
override this.OnShowContextMenu : System.Drawing.Point -> bool
Protected Overridable Function OnShowContextMenu (screenMenuPoint As Point) As Boolean

Parameters

screenMenuPoint
Point

The point at which to the context menu is shown.

Returns

true if the message is handled; otherwise, false.

Examples

The following code example shows how to override the OnShowContextMenu method so that it always returns true.

This code example is part of the Basic Designer Hosting SDK Sample from the DesignerShell.cs file. For more information, see Basic Designer Hosting.

protected override bool OnShowContextMenu(Point menuPoint)
{
    return true;
}
Protected Overrides Function OnShowContextMenu(ByVal menuPoint As Point) As Boolean
    Return True
End Function

Remarks

OnShowContextMenu occurs when the workflow should show a context menu.

Applies to