Click or drag to resize

CefContextMenuHandlerRunContextMenu Method

Called to allow custom display of the context menu. |params| provides information about the context menu state. |model| contains the context menu model resulting from OnBeforeContextMenu. For custom display return true and execute |callback| either synchronously or asynchronously with the selected command ID. For default display return false. Do not keep references to |params| or |model| outside of this callback.

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
protected virtual bool RunContextMenu(
	CefBrowser browser,
	CefFrame frame,
	CefContextMenuParams parameters,
	CefMenuModel model,
	CefRunContextMenuCallback callback
)

Parameters

browser  CefBrowser
 
frame  CefFrame
 
parameters  CefContextMenuParams
 
model  CefMenuModel
 
callback  CefRunContextMenuCallback
 

Return Value

Boolean
See Also