[]
Gets a TextMapFragment that represents the text
within a specified range (from startPos
to endPos
).
void GetFragment(MapPos startPos, MapPos endPos, out TextMapFragment fragment, out string text)
Sub GetFragment(startPos As MapPos, endPos As MapPos, ByRef fragment As TextMapFragment, ByRef text As String)
Type | Name | Description |
---|---|---|
MapPos | startPos | The MapPos specifying the start of the range. |
MapPos | endPos | The MapPos specifying the end of the range. |
TextMapFragment | fragment | OUT: a TextMapFragment representing the text in the range. |
string | text | OUT: the fragment's text. |
Gets a TextMapFragment that represents the text of the whole page.
void GetFragment(out TextMapFragment fragment, out string text)
Sub GetFragment(ByRef fragment As TextMapFragment, ByRef text As String)
Type | Name | Description |
---|---|---|
TextMapFragment | fragment | OUT: a TextMapFragment representing the text on the page. |
string | text | OUT: the fragment's text. |