String to search for in the document.
Searches for the specified string in the Document's pages collection.
[Visual Basic]
Public Function Find( _
ByVal searchString As String, _
ByRef currentIndex As Integer _
) As Boolean
[C#]
public bool Find(
string searchString,
ref int currentIndex
);
String to search for in the document.
A Boolean value. True, if the string was found in the document; otherwise, false.
If found, returns the location of the string in the currentIndex parameter. To continue searching after the first occurrence, call the method again with the returned currentIndex.
[C#]
private void btnFind_Click(object sender, System.EventArgs e) |
[Visual Basic]
Private Sub btnFind_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFind.Click |
Document Class | Document Members
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.