self:reload

Client

Reloads the current page in the webview


Syntax

local status = self:reload()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
boolstatustrue on successful execution, false otherwise

Examples

Reload the current page in a webview
local entity = core.webview.create()

entity:load_url("https://google.com")
entity:reload()

On this page