![]() |
This document is archived and information here might be outdated. Recommended version. |
Indicates if a context menu should be displayed at the given xy location. Return true if handled.
[Visual Basic .NET] Public Event OnContextMenu As OnContextMenuEventHandler
[C#] public event OnContextMenuEventHandler OnContextMenu
[C++]
HRESULT OnContextMenu(
long X,
long Y
);
[C++] Parameters X [in]
X is a parameter of type long Y [in]
Y is a parameter of type long
The OnContextMenu event is fired when a user right clicks within the IEngineNetworkAnalystEnvironment::NAWindow and can be used to supply a context menu.
public boolOnContextMenu(intx,inty) {//Create a context point at the location of the right mouse clickSystem.Drawing.Point pt = this.PointToClient(System.Windows.Forms.Cursor.Position); contextMenu1.Show(this, pt);returntrue; }
Public FunctionOnContextMenu(ByValxAs Integer,ByValyAs Integer)As Boolean'Create a context point at the location of the right mouse clickDimptAsSystem.Drawing.Point pt = Me.PointToClient(System.Windows.Forms.Cursor.Position) contextMenu1.Show(Me, pt)Return True EndFunction