type ICefBrowserView = interface(ICefView)
A View hosting a ICefBrowser instance. Methods must be called on the browser process UI thread unless otherwise indicated.
UNKNOWN
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/views/cef_browser_view_capi.h">CEF source file: /include/capi/views/cef_browser_view_capi.h (cef_browser_view_t))
function GetBrowser: ICefBrowser; |
|
function GetChromeToolbar: ICefView; |
|
procedure SetPreferAccelerators(prefer_accelerators: boolean); |
function GetBrowser: ICefBrowser; |
|
Returns the ICefBrowser hosted by this BrowserView. Will return NULL if the browser has not yet been created or has already been destroyed. Attributes
|
function GetChromeToolbar: ICefView; |
|
Returns the Chrome toolbar associated with this BrowserView. Only supported when using the Chrome runtime. The ICefBrowserViewDelegate.GetChromeToolbarType function must return a value other than CEF_CTT_NONE and the toolbar will not be available until after this BrowserView is added to a ICefWindow and ICefViewDelegate.OnWindowChanged() has been called. |