SimpleHTML:SetText("text")
|
Sets the text to be displayed in the SimpleHTML frame.
|
SimpleHTML:SetSpacing(["element",] spacing)
|
Sets the amount of spacing between lines of text in the frame.
|
SimpleHTML:SetShadowOffset(["element",] xOffset, yOffset)
|
Returns the offset of text shadow from text in the frame.
|
SimpleHTML:SetJustifyV(["element",] "justify")
|
Sets the vertical alignment style for text in the frame.
|
SimpleHTML:SetJustifyH(["element",] "justify")
|
Sets the horizontal alignment style for text in the frame.
|
SimpleHTML:SetIndentedWordWrap(["element",] indent)
|
Sets whether long lines of text are indented when wrapping.
|
SimpleHTML:SetHyperlinksEnabled(enable)
|
Enables or disables hyperlink interactivity in the frame.
|
SimpleHTML:SetHyperlinkFormat("format")
|
Sets the format string used for displaying hyperlinks in the frame.
|
SimpleHTML:SetFontObject(["element",] font) or SimpleHTML:SetFontObject(["element",] "name")
|
Sets the `Font` object from which the properties of a font used in the frame are inherited.
|
spacing = SimpleHTML:GetSpacing(["element"])
|
Returns the amount of spacing between lines of text in the frame.
|
xOffset, yOffset = SimpleHTML:GetShadowOffset(["element"])
|
Returns the offset of text shadow from text in the frame.
|
justify = SimpleHTML:GetJustifyV(["element"])
|
Returns the vertical alignment style for text in the frame.
|
justify = SimpleHTML:GetJustifyH(["element"])
|
Returns the horizontal alignment style for text in the frame.
|
indent = SimpleHTML:GetIndentedWordWrap(["element"])
|
Returns whether long lines of text are indented when wrapping.
|
enabled = SimpleHTML:GetHyperlinksEnabled()
|
Returns whether hyperlinks in the frame's text are interactive.
|
format = SimpleHTML:GetHyperlinkFormat()
|
Returns the format string used for displaying hyperlinks in the frame.
|
font = SimpleHTML:GetFontObject(["element"])
|
Returns the `Font` object from which the properties of a font used in the frame are inherited.
|