Uses of Interface
com.qoppa.pdf.TextSelection

Packages that use TextSelection
com.qoppa.pdf General classes used by different objects throughout the library. 
com.qoppa.pdf.dom Classes representing the PDF document object model. 
com.qoppa.pdfProcess jPDFProcess main classes, used to manipulate PDF documents and pages. 
com.qoppa.pdfViewer PDFViewerBean and related classes. 
 

Uses of TextSelection in com.qoppa.pdf
 

Classes in com.qoppa.pdf that implement TextSelection
 class TextPosition
          Object that holds information about the location of a text string in a PDF file.
 class TextPositionWithContext
          This class represents one result from a text search in a document.
 

Uses of TextSelection in com.qoppa.pdf.dom
 

Methods in com.qoppa.pdf.dom that return TextSelection
 TextSelection IPDFPage.getTextInArea(Rectangle2D selectArea)
          Selects the text in an area of the page.
 TextSelection IPDFPage.getTextSelection(Rectangle2D selectRect)
          Deprecated. Use getTextInArea instead
 TextSelection IPDFPage.getTextWithCursors(Point2D startCursor, Point2D endCursor)
          Returns the text contained between the start and end cursors, in "reading mode".
 

Uses of TextSelection in com.qoppa.pdfProcess
 

Methods in com.qoppa.pdfProcess that return TextSelection
 TextSelection PDFPage.getTextInArea(Rectangle2D selectArea)
          Selects the text in an area of the page.
 TextSelection PDFPage.getTextWithCursors(Point2D startCursor, Point2D endCursor)
          Returns the text contained between the start and end cursors, in "reading mode".
 

Uses of TextSelection in com.qoppa.pdfViewer
 

Methods in com.qoppa.pdfViewer that return TextSelection
 TextSelection IPDFPageView.clearTextSelection()
          Clears the current text selection.
 TextSelection PDFViewerBean.getSelectedText()
          Gets the current text selection (if any page has selected text) in the document.
 TextSelection IPDFPageView.getTextSelection()
          Returns the current text selection in the page, if any.
 TextSelection IPDFPageView.selectTextInArea(Rectangle2D selectRect)
          Selects the text in an area of the page.
 TextSelection IPDFPageView.selectTextWithCursors(Point2D startCursor, Point2D endCursor)
          Selects the text in the page from the start cursor to the end cursor, in reading mode.
 

Methods in com.qoppa.pdfViewer with parameters of type TextSelection
 void IPDFPageView.setTextSelection(TextSelection ts)
          Sets the text selection in this page.