Searches the text in the document for a specified string starting at a specified location and with specific options applied to the search.
Syntax
'Declaration
Public Overloads Function Find( _
ByVal As String, _
ByVal As FindOptions, _
ByRef As Integer, _
ByRef As Single _
) As FindResult
public FindResult Find(
string ,
FindOptions ,
ref int ,
ref float
)
Parameters
- searchString
- The string you are searching for
- options
- which direction you are searching
- currentIndex
- The page's collection zero based index
- currentOffset
- The current offset into the text string
See Also