property PageWidth: Double;
Mirrors TPdf.PageWidth. The TPdfView component forwards the call to its underlying Pdf 呼び出しで文書が変更された場合は、ビューを更新します
TPdf.PageWidth の意味上の注意はここでも同じです。違いは、操作をモデル object ではなく visual control 経由で行う点だけです
When TPdfView is bound to an external TPdf (assigning PdfView1.Pdf := Pdf1)、このメンバーを読み取ると同じデータが返ります Pdf1.PageWidth。TPdfView が内部の TPdf を所有している場合、このメンバーだけが公開アクセサです
UpdatePage が自動的に実行されます。基盤の TPdf 経由で設定しても実行されません。その場合は PdfView1.UpdatePage を手動で呼び出してくださいPdfView1.Active is False.
if PdfView1.Active then
Memo1.Lines.Add('PageWidth = ' + VarToStr(PdfView1.PageWidth));