PDFium Component Docs

TextInRectangle Función

Componente: TPdfView  ·  Unidad: PDFium
Envoltura de TPdfView que reenvía a TPdf.TextInRectangle.

Syntax

function TextInRectangle(Left, Top, Right, Bottom: Integer): WString; overload;

 

function TextInRectangle(Rectangle: TRect): WString; overload;

Description

Refleja TPdf.TextInRectangle. El componente TPdfView reenvía la llamada a su instancia Pdf subyacente y actualiza la vista si la llamada modifica el documento.

Todas las notas semánticas de TPdf.TextInRectangle se aplican de forma idéntica aquí; la única diferencia es que aborda la operación a través del control visual en lugar del objeto modelo.

Cuando TPdfView está enlazado a un TPdf externo (asignando PdfView1.Pdf := Pdf1), la lectura de este miembro devuelve los mismos datos que Pdf1.TextInRectangle; cuando TPdfView posee su TPdf interno, este miembro es el único descriptor de acceso público.

Remarks

Example

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

See Also

TextInRectangle, Pdf