self:is_fullscreen

Client

Retrieves whether the webview is in fullscreen mode


Syntax

local result = self:is_fullscreen()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
boolresulttrue if the webview is fullscreen, false otherwise

Examples

Check if a webview is in fullscreen mode
local wv = webview.create()

engine.print("info", "Webview fullscreen:", wv:is_fullscreen())

On this page