GetWebUICount: Difference between revisions

From Onset Developer Wiki
(Created page with "{{Info|Function|Client|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|GetWebUICount()}} {{FuncParameters}} {{FuncNoParam}} {{FuncReturnValue|__EDIT_ME__}} == Example...")
 
No edit summary
 
Line 1: Line 1:
{{Info|Function|Client|1.0}}
{{Info|Function|Client|1.0}}


{{FuncDescription|__EDIT_ME__}}
{{FuncDescription|Gets the total number of Web UIs created.}}


{{FuncSyntax|GetWebUICount()}}
{{FuncSyntax|GetWebUICount()}}
Line 8: Line 8:
{{FuncNoParam}}
{{FuncNoParam}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|Returns the number of web UIs created.}}


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang='Lua'>
print("Web UIs created:  ".. GetWebUICount() ..")
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
__EDIT_ME__
{{WebFunctions}}

Latest revision as of 16:26, 11 April 2020

GetWebUICount

Type: Function
Context: Client
Introduced: v1.0

Description

Gets the total number of Web UIs created.

Syntax

GetWebUICount()

Parameters

  • This function has no parameters.

Return Value

  • Returns the number of web UIs created.

Example

print("Web UIs created:  ".. GetWebUICount() ..")

See also