WoW:API KBSetup IsLoaded: Difference between revisions

From AddOn Studio
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)
 
(No difference)

Latest revision as of 04:46, 15 August 2023

WoW API < KBSetup IsLoaded

Determine if the article list is loaded.

loaded = KBSetup_IsLoaded()

Parameters[edit]

Arguments[edit]

()

Returns[edit]

loaded
loaded
Boolean - True if the article list is loaded.

Example[edit]

 function KnowledgeBaseFrame_Search(resetCurrentPage)
   if ( not KBSetup_IsLoaded() ) then
     return;
   end
   -- ...

From Blizzard's KnowledgeBaseFrame.lua (l. 217 ff.)