DisplayPopupMenuDelegate Delegate

Delegate used to show popup menu.

Namespace:  Microsoft.SqlServer.Management.UI.VSIntegration.Editors
Assembly:  SQLEditors.VS (in SQLEditors.VS.dll)

Syntax

'Declaration
Public Delegate Sub DisplayPopupMenuDelegate ( _
    menuId As Integer, _
    x As Integer, _
    y As Integer _
)
'Usage
Dim instance As New DisplayPopupMenuDelegate(AddressOf HandlerMethod)
public delegate void DisplayPopupMenuDelegate(
    int menuId,
    int x,
    int y
)
public delegate void DisplayPopupMenuDelegate(
    int menuId, 
    int x, 
    int y
)
type DisplayPopupMenuDelegate = 
    delegate of 
        menuId:int * 
        x:int * 
        y:int -> unit
JScript supports the use of delegates, but not the declaration of new ones.

Parameters

  • menuId
    Type: System.Int32
    An Integerrepresenting the pop up menu id.
  • x
    Type: System.Int32
    An Integerrepresenting the X screen coordinate.
  • y
    Type: System.Int32
    An Integerrepresenting the Y screen coordinate.