Widget API: FontString:SetText

Revision as of 04:45, 15 August 2023 by Move page script (talk | contribs) (Move page script moved page API FontString SetText to API FontString SetText without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Widget API ← FontString < SetText

SynopsisEdit

 FontString:SetText(string text)

DescriptionEdit

Sets the text to be displayed in the fontstring. The text will have the color given to it via the fontinstance definition (or a FontString:SetTextColor call). You may however use escape sequences to modify the string's appearance.

NOTE: FontString has a limit of ~4000 chars.

ExamplesEdit

 FontString:SetText('|cff000000This text is black,|r |cffff0000while this text will be red.|r')

will return

 This text is black, while this text will be red.

Notes