Tam
Tam

Reputation: 12042

How to convert string with TLF format into TextFlow in Flex

I used TextConverter to convert a TextFlow in Flex to String to store it in my Database. How to convert that string back to TextFlow in order to display in Rich Text format

Upvotes: 0

Views: 1375

Answers (1)

Florian F
Florian F

Reputation: 8875

yourRichTextArea.textFlow = TextFlowUtil.importFromString(yourStoredDataBaseString)

Upvotes: 2

Related Questions