I have a problem concerning the RTF format.
I am developping in Delphi 2009, I want to save the content of my TRichViewEdit in a RTF format while keeping the Protection Property I applied to my text.
This is how I add the protection property to my text
Code: Select all
ARichEdit.Style.TextStyles.Items[ARichEdit.CurTextStyleNo].Protection := [rvprModifyProtect];
ARichEdit.InsertText(String(mMeo));
Is there any option I have to include when I save my text or anything else?
Thanks
-Charles