PDFium Component Docs

TextInRectangle Función

Componente: TPdfView  ·  Unidad: PDFium
Envoltorio 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 refresca la vista si la llamada muta el documento.

Todas las notas semánticas de TPdf.TextInRectangle se aplican aquí de forma idéntica; la única diferencia es que dirige 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), leer este miembro devuelve los mismos datos que Pdf1.TextInRectangle; cuando TPdfView es propietario de su TPdf interno, este miembro es el único accessor público.

Remarks

Example

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

See Also

TextInRectangle, Pdf