AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Lector PDF
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Otros
Procedimientos almacenados
Sets the position on the previous result of a search started with PDFReaderSeekFirst in the content of a PDF Reader control.
Remark: PDFReaderSeekNext finds the next instance of the search text.
Ejemplo
// Seeks a text in a PDF Reader control and displays it
PDFReaderSeekFirst(PDF_MyPDFReader, "company")
// Finds the next element
IF PDFReaderSeekNext(PDF_MyPDFReader) = False THEN
Info("Search ended")
END

// Finds the previous element
PDFReaderSeekPrevious(PDF_MyPDFReader)
Sintaxis
<Result> = PDFReaderSeekPrevious(<PDF Reader control>)
<Result>: Boolean
  • True if the text specified in PDFReaderSeekFirst was found in the current document in the PDF Reader control,
  • False if the text was not found.
<PDF Reader control>: Control name
Name of PDF Reader control to use.
Observaciones
  • The text and the search options have been specified in PDFReaderSeekFirst.
  • Android A partir de la versión 28, esta función no es compatible con los procesadores ARM de 32 bits. Las nuevas funciones de PDF requieren un modo de ejecución de 64 bits.
    Si una aplicación se va a ejecutar en dispositivos con procesadores ARM de 32 bits, debe generarse con WINDEV Mobile 27.
Clasificación Lógica de negocio / UI: Código UI
Componente: wd290obj.dll
Versión mínima requerida
  • Versión 23
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 16/12/2023

Señalar un error o enviar una sugerencia | Ayuda local