WoW:API KBSetup IsLoaded: Difference between revisions
Jump to navigation
Jump to search
(New page: {{wowapi}} __NOTOC__ <div style="float: right"><small>'''Main Page'''</small></div> Determine if the article list is loaded. loaded = KBSetup_IsLoaded() == Parameters...) |
m (Move page script moved page API KBSetup IsLoaded to API KBSetup IsLoaded without leaving a redirect) |
Latest revision as of 04:46, 15 August 2023
Determine if the article list is loaded.
loaded = KBSetup_IsLoaded()
Parameters
Arguments
- ()
Returns
- loaded
- loaded
- Boolean - True if the article list is loaded.
Example
function KnowledgeBaseFrame_Search(resetCurrentPage)
if ( not KBSetup_IsLoaded() ) then
return;
end
-- ...
From Blizzard's KnowledgeBaseFrame.lua (l. 217 ff.)