Vital.sandbox
Webview

self:is_fullscreen

Client

Retrieves whether the webview is in fullscreen mode


Syntax

local result = self:is_fullscreen()

Parameters

TypeNameDescription

Returns

TypeNameDescription
boolresulttrue if the webview is fullscreen, false otherwise

Examples

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

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

On this page