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| | {{FuncDescription|Gets the total number of Web UIs created.}} | ||
{{FuncSyntax|GetWebUICount()}} | {{FuncSyntax|GetWebUICount()}} | ||
Line 8: | Line 8: | ||
{{FuncNoParam}} | {{FuncNoParam}} | ||
{{FuncReturnValue| | {{FuncReturnValue|Returns the number of web UIs created.}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang='Lua'> | |||
print("Web UIs created: ".. GetWebUICount() ..") | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
{{WebFunctions}} |
Latest revision as of 16:26, 11 April 2020
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() ..")