How can I set the default PDF page view to FULL PAGE.
At present I have to use the resize buttons on the bottom of the screen, to see the full page. Is there a way to make the PDF open in a full-page view (similar to Adobe properties / initial view).
This feature is not built-in, but there may be a solution. Please add this code to the UserMain script of your project (instructions here: Quickly Add HEScript Code)
Code:
procedure OnPDFDisplay(PDFPath: String);
begin
PDFViewerCommand(45, 0);
end;