According to problems

ScaleRichView support and discussion (TRichView add-on for WYSIWYG editing)
Post Reply
th9999
Posts: 33
Joined: Tue Jun 25, 2013 10:42 am

According to problems

Post by th9999 »

hello

How to set the ViewProperty to display only 1 full page


SRichViewEdit1.ViewProperty.ZoomMode := rvzmCustom;
SRichViewEdit1.ViewProperty.ZoomModeEdit := rvzmCustom;
SRichViewEdit1.ViewProperty.ZoomModeIN := rvzmCustom;
SRichViewEdit1.ViewProperty.ZoomModeOUT := rvzmCustom;
Attachments
111.jpg
111.jpg (125.19 KiB) Viewed 16060 times
standay
Posts: 256
Joined: Fri Jun 18, 2021 3:07 pm

Re: According to problems

Post by standay »

I'm using a plain richviewedit with an rvprintpreview, but in that scenario, these work:

Code: Select all

RVPrintPreview1.ZoomMode := rvzmPageWidth ;
RVPrintPreview1.ZoomMode := rvzmFullPage ;
Maybe it's similar in the scale rv?
Sergey Tkachenko
Site Admin
Posts: 17253
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Re: According to problems

Post by Sergey Tkachenko »

Assign SRichViewEdit.PagePosProperty.MaxPageColCount = 1
Post Reply