WoW:API GetTitleName: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
m (flagged as API stub)
(Cleaned up the article and updated it according to the current boilerplate.)
Line 1: Line 1:
{{Stub/API}}
{{wowapi}} __NOTOC__
Get the name of the title used by the player.


titleName = GetTitleName(titleId)
== Parameters ==
=== Arguments ===
:(titleId)


:;titleId : Number - The number of the title currently select by the player.
Gets the name of the title associated with a title index.
=== Returns ===
local titleName = GetTitleName(titleId)
:name
 
 
== Arguments ==
:;titleId : Number - The index of the title to get the name of.
 
 
 
== Returns ==
:;titleName : String - The name of the title.
 


:;name : String - The name of the title.
== Example ==
== Example ==
<!-- begin code -->
  local titleId = GetCurrentTitle();
  local titleId = GetCurrentTitle();
  local titleName = GetTitleName(titleId);
  local titleName = GetTitleName(titleId);
<!-- end code -->
__NOTOC__


== Notes ==
 
Supported starting in build 20000
== Details ==
: Introduced in build 20000.

Revision as of 15:23, 12 June 2007

WoW API < GetTitleName


Gets the name of the title associated with a title index.

local titleName = GetTitleName(titleId)


Arguments

titleId
Number - The index of the title to get the name of.


Returns

titleName
String - The name of the title.


Example

local titleId = GetCurrentTitle();
local titleName = GetTitleName(titleId);


Details

Introduced in build 20000.