Sets the contents of a RichText object with a string that can be in eFTF syntax or tFTF syntax. The existing text contents are replaced when you call this function. Citations cannot be added using this function - use the AddCitation method instead. Record links can be added, but only if you set both bRich and bTFTF to true, and supply the record links using tFTF syntax.
rt:SetText(strText[, bRich[, bTFTF]])
rt = fhNewRichText() rt:SetText("An <u>important</u> point") sText = rt:GetText() fhMessageBox(sText) -- displays "An <u>important</u> point"