Save rich text

How can we save rich text so that it keeps the formatting and we can display it when needed?

Comments

  • Decisions is capable of storing rich text as HTML using the String datatype, and can convert it back into rich text depending on what the text is passed into. So, if we were to type some rich text into a Rich Text Box on a form, we can save that data as a string into a data structure. If we fetch that same data and display it in a Rich Text Box, it will then convert into rich text again from its HTML string.

Sign In or Register to comment.