Indicates where to start finding text when the value of Start is DocumentViewerFindTextStart.ManualPosition.
public DocumentViewerTextPosition ManualStartPosition { get; set; }
Public Property ManualStartPosition() As DocumentViewerTextPosition
Get
Set
public:
property DocumentViewerTextPosition^ ManualStartPosition
{
DocumentViewerTextPosition^ get()
void set(DocumentViewerTextPosition^ value)
}
An enum value from DocumentViewerFindTextStart that indicates where the text search should start. The default value is DocumentViewerFindTextStart.BeginPosition, which creates one search starting from BeginPosition and stopping at EndPosition.
BeginPosition and EndPosition set the begin and end of the search bounds and the direction of the search, but Start provides the ability to start finding text at a position other than BeginPosition. This would cause the order of results to change, which is useful for SelectFirstResult.
When Start is set to DocumentViewerFindTextStart.ManualPosition, ManualStartPosition is used as the start position for DocumentViewerText.Find, within the bounds of BeginPosition and EndPosition. If ManualStartPosition is null, the search defaults to BeginPosition as the start position.
Use of ManualStartPosition is likely to cause two internal searches: 1. Search from start to EndPosition. 2. If start from (1) was not BeginPosition, and FindAll or Loop is true, search from BeginPosition to start – 1.
A -1
can be used as the value of DocumentViewerTextPosition.CharacterIndex to indicate the end of a page. However, if a value other than 0
or -1
is used, DocumentViewerText.Find will check that the DocumentPageText exists before starting the search. If the text for the page does not exist, the find text operation will fail immediately and return no results.
For more information, refer to DocumentViewerText.Find.
History
For an example, refer to DocumentViewerText.Find.
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET