self:is_forward_input

Client

Retrieves whether the webview is eligible to become the global input forwarder


Syntax

local result = self:is_forward_input()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
boolresulttrue if the webview is eligible to become the global input forwarder, false otherwise

Examples

Check if a webview is eligible for input forwarding
local entity = core.webview.create()

core.engine.print("info", "Webview forward input:", entity:is_forward_input())

On this page