THotPDF.InitialZoom Property

 

THotPDF.InitialZoom

THotPDF

 

למעלה  הקודם  הבא

שולט ב-zoom התצוגה הראשוני של העמוד שנכתב לערך OpenAction של המסמך. הערך מכובד על ידי קוראי PDF בעת פתיחת הקובץ

 

type

THPDFInitialZoom = (

     FitNone, FitPage, FitWidth, FitHeight, FitBox,

     FitBoxWidth, FitBoxHeight,

     Zoom50, Zoom75, Zoom100, Zoom125, Zoom150, Zoom200);

 

Delphi syntax:

property InitialZoom: THPDFInitialZoom;

 

C++ syntax:

__property THPDFInitialZoom InitialZoom;

 

תיאור

השתמש ב-InitialZoom כדי להגדיר את מצב תצוגת העמוד שבו המסמך נפתח. HotPDF כותבת את הערך לערך /OpenAction של המסמך כאחד מיעדי התצוגה הסטנדרטיים של PDF: ‏Fit, FitH, FitV, FitR, FitB, FitBH, FitBV או XYZ

מאז HotPDF v2.3.11 ערך ברירת המחדל הוא FitHeight ‏(יעד PDF ‏/FitV), כך שמסמכים שנוצרים נפתחים כאשר כל עמוד מותאם לגובה חלון ה-viewer. הגדר InitialZoom ל-FitNone כדי להשמיט את ערך OpenAction ולאפשר ל-viewer לחזור ל-zoom ברירת המחדל שלו

 

Value              PDF destination    Meaning


FitNone           (none)            No special zoom; let the viewer use its own default.

FitPage           /Fit              Fit the entire page inside the window.

FitWidth          /FitH             Fit page width to the window.

FitHeight         /FitV             Fit page height to the window. (default)

FitBox            /FitR or /FitB     Fit the bounding box of the page contents to the window.

FitBoxWidth      /FitBH          Fit the bounding box width to the window.

FitBoxHeight     /FitBV          Fit the bounding box height to the window.

Zoom50            /XYZ null null 0.5       Open the page at 50% scale.

Zoom75            /XYZ null null 0.75      Open the page at 75% scale.

Zoom100          /XYZ null null 1.0       Open the page at 100% (actual size).

Zoom125          /XYZ null null 1.25      Open the page at 125% scale.

Zoom150          /XYZ null null 1.5       Open the page at 150% scale.

Zoom200          /XYZ null null 2.0       Open the page at 200% scale.

 

לסקירה ברמה גבוהה יותר של האופן שבו InitialZoom משתלב עם מילון viewer-preferences של PDF, ראה ViewerPreferences Complete Reference

 

Code Example

HPDF := THotPDF.Create( nil );
try
  HPDF.FileName  := 'c:\Output.pdf';
  HPDF.InitialZoom := FitWidth;       // Open with page width fitted to window
  HPDF.BeginDoc;
  HPDF.CurrentPage.TextOut( 100, 100, 0, 'Hello World!' );
  HPDF.EndDoc;
finally
  HPDF.Free;
end;