CefRenderProcessHandler OnFocusedNodeChanged Method Xilium.CefGlue

[This is preliminary documentation and is subject to change.]

Called when a new node in the the browser gets focus. The |node| value may be empty if no specific node has gained focus. The node object passed to this method represents a snapshot of the DOM at the time this method is executed. DOM objects are only valid for the scope of this method. Do not keep references to or attempt to access any DOM objects outside the scope of this method.

Namespace: Xilium.CefGlue
Assembly: Xilium.CefGlue (in Xilium.CefGlue.dll) Version: 3.2272.2035.0 (3.2272.2035.0)
Syntax

protected virtual void OnFocusedNodeChanged(
	CefBrowser browser,
	CefFrame frame,
	CefDomNode node
)

Parameters

browser
Type: Xilium.CefGlue CefBrowser

[Missing <param name="browser"/> documentation for "M:Xilium.CefGlue.CefRenderProcessHandler.OnFocusedNodeChanged(Xilium.CefGlue.CefBrowser,Xilium.CefGlue.CefFrame,Xilium.CefGlue.CefDomNode)"]

frame
Type: Xilium.CefGlue CefFrame

[Missing <param name="frame"/> documentation for "M:Xilium.CefGlue.CefRenderProcessHandler.OnFocusedNodeChanged(Xilium.CefGlue.CefBrowser,Xilium.CefGlue.CefFrame,Xilium.CefGlue.CefDomNode)"]

node
Type: Xilium.CefGlue CefDomNode

[Missing <param name="node"/> documentation for "M:Xilium.CefGlue.CefRenderProcessHandler.OnFocusedNodeChanged(Xilium.CefGlue.CefBrowser,Xilium.CefGlue.CefFrame,Xilium.CefGlue.CefDomNode)"]

See Also