PDFium Component Docs

Metoda SelectTextRange

Component: TPdfView  ·  Unit: PDFium
Čte nebo zapisuje programový model výběru textu v TPdfView bez nutnosti vstupu myší

Syntax

function SelectTextRange(Page, StartIndex, Count: Integer): Boolean;

Parameters

PageInteger. One-based page number
StartIndexInteger. Zero-based first character index
CountInteger. Number of characters to select

Return Value

Boolean. True when the requested page and character range are valid and selected

Description

The selection members expose the same page and character-index model used by viewer selection painting. Calls validate page numbers and character ranges before changing the selection

Programmatic selection works independently of user input options, then repaints the viewer and raises OnSelectionChange through the normal selection pipeline

Remarks

Example

if PdfView1.SelectTextRange(1, 0, 40) then
  Memo1.Lines.Text := PdfView1.SelectedText;

See Also

SelectionRanges, SelectionRectangles, SelectedText, OnSelectionChange