selectDone

Event for selection.
[event] selectDone()
This event is called when the left mouse button is released and the user has just finished selection a region.
VB:
' zoom to the current selection Private Sub viewer_selectDone() Handles viewer.selectDone Dim page As Long Dim x0 As Double, y0 As Double, x1 As Double, y1 As Double If viewer.getCurrentSelection2(x0, y0, x1, y1) Then viewer.zoomToRect2(page, x0, y0, x1, y1) End If End Sub
getCurrentSelection2
getSelectedText
copySelection
enableSelect