I've found only 1 way to do that - I set OnDrawTextBack, OnDrawCheckpoint, OnDrawPageBreak and OnDrawParaBack events and write that code:
Code: Select all
procedure TForm1.RVStyle1DrawParaBack(Sender: TRVStyle; Canvas: TCanvas; ParaNo: Integer;
ARect: TRect; var DoDefault: Boolean);
begin
DrawThemeParentBackground(RichViewEdit1.Handle, Canvas.Handle, nil);
end;
if there are no other way, then how can i make tables, cells and craphics transparent?