WoW API: KBSetup IsLoaded

From AddOn Studio
Revision as of 17:10, 18 April 2008 by WoWWiki>Borlox (New page: {{wowapi}} __NOTOC__ <div style="float: right"><small>'''Main Page'''</small></div> Determine if the article list is loaded. loaded = KBSetup_IsLoaded() == Parameters...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW API < KBSetup IsLoaded

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.)