PDFiumVCL Docs

HighlightSearchText property

이 API 항목은 식별자, 시그니처, 코드 블록, PDF 용어를 원래 형태로 유지합니다.
Component: TPdfView  ·  Unit: PDFium
TPdfView wrapper that forwards to TPdfView.HighlightSearchText.

Syntax

property HighlightSearchText; // forwards to underlying TPdf

Description

Mirrors TPdfView.HighlightSearchText. The TPdfView component forwards the call to its underlying Pdf instance and refreshes the view if the call mutates the document.

All semantic notes from TPdfView.HighlightSearchText apply identically here; the only difference is that you address the operation through the visual control instead of the model object.

When TPdfView is bound to an external TPdf (assigning PdfView1.Pdf := Pdf1), reading this member returns the same data as Pdf1.HighlightSearchText; when TPdfView owns its internal TPdf, this member is the only public accessor.

Remarks

Example

if PdfView1.Active then
  Memo1.Lines.Add('HighlightSearchText = ' + VarToStr(PdfView1.HighlightSearchText));

See Also

HighlightSearchText, Pdf