GetAllWebUI

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
GetAllWebUI

Type: Function
Context: Client
Introduced: v1.0

Description

Get all web UI created for the client. Useful for loops.

Syntax

GetAllWebUI()

Parameters

  • This function has no parameters.

Return Value

  • Returns a table of all web UIs created for the player.

Example

for k, v in pairs(GetAllWebUI()) do
    DestroyWebUI(v)
end

See also