WoW:API GetLanguageByIndex: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
m (→‎See also: The "Info" section as it was isn't really necessary.)
m (Move page script moved page API GetLanguageByIndex to API GetLanguageByIndex without leaving a redirect)
 
(No difference)

Latest revision as of 04:46, 15 August 2023

WoW API < GetLanguageByIndex

Returns the language specified by the index that your character can speak.

Language = GetLanguageByIndex(index)

Parameters[edit]

Arguments[edit]

index
index
Numeric - The index starting at 1.

Returns[edit]

Language
Language
String - Returns the language specified by the index that your character can speak.

Example[edit]

for x=1, GetNumLanguages() do
  DEFAULT_CHAT_FRAME:AddMessage(GetLanguageByIndex(x))
end

See also[edit]