PDFium Component Docs

PopupMenu property

Component: TPdfView  ·  Unit: PDFium
Associates a TPopupMenu s PDF preglednikom tako da desni klik na stranicu prikazuje kontekstni izbornik.

Syntax

property PopupMenu: TPopupMenu; // published, inherited from TControl

Description

Setting PopupMenu wires the viewer to a TPopupMenu komponenta postavljena na isti obrazac. Kad god korisnik desno klikne (ili pritisne tipku izbornika na tipkovnici) unutar preglednika, VCLL/LCL automatically shows the menu at the cursor position — the application does not need to handle WM_CONTEXTMENU itself.

A typical PDF reader context menu offers items such as Copy Selected Text, Zoom In, Zoom Out, Fit Width, Rotate, Go to Page…, Find… and Save As…. The menu items typically read or write public properties such as CurrentCharIndex, Zoom, FitMode, Rotation and PageNumber to act on the document.

Because the popup is displayed via the OnContextPopup mechanism, you can suppress or replace it dynamically by handling OnContextPopup and setting Handled := True — useful when the right-click occurs over a form field or annotation that needs its own menu.

Remarks

Example

// Attach a context menu offering Copy / Fit Width / Go to Page
procedure TForm1.FormCreate(Sender: TObject);
begin
  PdfView1.PopupMenu := pmReader;
end;

procedure TForm1.miFitWidthClick(Sender: TObject);
begin
  PdfView1.FitMode := pfmFitToWidth;
end;

procedure TForm1.miGoToPageClick(Sender: TObject);
var S: string;
begin
  S := IntToStr(PdfView1.PageNumber);
  if InputQuery('Go to page', 'Page number:', S) then
    PdfView1.PageNumber := StrToIntDef(S, PdfView1.PageNumber);
end;

See Also

AllowUserTextSelection, CurrentCharIndex, PageNumber, FitMode