I'm checking out the trial version of tRichVeiw for Delphi 2007. I can load an RTF file but the results are not what I expected. The display is a single font and text that was supposed to be bold is being displayed in blue.
Here's my code.
begin with RichViewTest do
begin
Clear;
DeleteUnusedStyles(True,True,True);
if loadRTF( 'RV.rtf') then
begin
Format;
end;
end;
end;
I'm using the default RVStyle component for my tRichEdit control.
Any help would be appreciated.
LoadRTF unexpected results
-
- Site Admin
- Posts: 17534
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Make sure that
PS: if LoadRTF returns False, document may be partially loaded, so you still need to call Format.
Code: Select all
RichViewTest.RTFReadProperties.TextStyleMode = rvrsAddIfNeeded;
RichViewTest.RTFReadProperties.ParaStyleMode = rvrsAddIfNeeded;