TRichEditor save to INI File?

I need to store a small snippet of RTF formatted text along with some other parameters in an ini file. Usually if I am storing a plaintext memo or something I just set the delimiter and use the DelimittedText property of Lines (TStrings) to save the memo contents as one big string. With the TAdvRichEditor control there doesn't seem to be a way to just return the result as a contiguous string including the formatting?

Am I missing something?

Assuming you refer to TAdvRichEditor, you get this with AdvRichEditor.ContentAsRTF: string;

Ha! I just knew there would be a way. I missed this in the documentation. Thanks very much :)