Replaces the selected text items for a page.
DocumentViewerText.prototype.setSelectedTextItems = function(pageNumber, items)
setSelectedTextItems(pageNumber: number, items: DocumentViewerTextItem[]): void;
pageNumber
Pager number to use. This value cannot be 0 and must be a valid page number.
items
Collection of DocumentViewerTextItem that contains the new selected text. If this parameter is
null or an empty list, then the text selection of the page is cleared.
DocumentViewerText stores the selection state of the text of each page in the document internally. It will use this value to highlight the selected text on the view ImageViewer control when RenderSelection is true.
When a new document is set in the document viewer, none of the text in its pages is selected. This can change by the viewer when during any of the following:
If DocumentViewerSelectTextInteractiveMode is active and the user clicks and drags on the page to select text.
When SelectAll, SelectText or Find are called to alter the selection text state for a page or the whole document. Or ClearSelection to clear the text selection.
All these methods will call SetSelectedTextItems to update the state. This method will perform the following:
Fires the Operation event with DocumentViewerOperation.TextSelectionChaged before and after working on the whole document.
Fires the Operation event with DocumentViewerOperation.PageTextSelectionChanged before and after working on each page.
Update the internal text selection state.
Use GetSelectedTextItems to get the currently selected text item for a page and GetSelectedText to get the selected text as a simple string object. Use HasSelectedText to check whether a page or the whole document has any selected text. The text of each page is obtained through the DocumentPage.GetText method and result is saved in the DocumentViewerText. If the text of a document has not been obtained, then the viewer will perform this automatically when the value of AutoGetText is true.