TcxGridPopupMenu.OnMenuItemClick Event
Allows you to respond to a click on a menu item.
Declaration
property OnMenuItemClick: TcxGridPopupMenuItemClickProc read; write;
Remarks
The OnMenuItemClick
event occurs every time a user clicks a menu item.
ASender specifies the invoked pop-up menu item.
AHitTest provides the HitTest information on an element for which the pop-up menu has been invoked.
AHandler specifies the default handler for the invoked pop-up menu item. This handler will be invoked after the OnMenuItemClick
event handler has finished its execution (if AHandled is True
). Set AHandled to False
to prevent the default action execution.
See Also