|
TCustomRVPrintPreview.PrintableAreaPen |
Top Previous Next |
|
This pen is used for drawing rectangle around the printable area on the page preview. property PrintableAreaPen: TRVPAPen; (introduced in version 10) By default, PrintableAreaPen.Style=psClear, so the rectangle is invisible: type TRVPAPen = class (TPen) property Style default psClear; property Color default clRed; end; Printer cannot print beyond the area shown on this rectangle, see WinAPI function GetDeviceCaps, PHYSICAL*** constants. See also properties: See also: ▪Picture in TRVPrint topic. |