Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
Leadtools.Documents.UI Namespace > DocumentViewerText Class : HasDocumentPageText Method |
public bool HasDocumentPageText( int pageNumber )
'Declaration
Public Function HasDocumentPageText( _ ByVal pageNumber As Integer _ ) As Boolean
'Usage
Dim instance As DocumentViewerText Dim pageNumber As Integer Dim value As Boolean value = instance.HasDocumentPageText(pageNumber)
public: bool HasDocumentPageText( int pageNumber )
DocumentViewerText contains many operations that require the text of the page(s) being parsed. This is done by calling the DocumentPage.GetText method of the page.
DocumentPage.GetText parses the text from the page using SVG or OCR and that could be a slow operation. Hence, when it is called by DocumentViewerText, the result DocumentPageText object is stored internally and re-used when it is needed.
When the user sets a new Document in DocumentViewer using SetDocument, the saved DocumentPageText objects are discarded but the viewer will not start parsing the text for any pages till it is needed.
The text for pages are obtained through the use of AutoGetText, GetDocumentPageText or GetAllDocumentPageText.
To check whether the text for a particular page is obtained, use HasDocumentPageText.