ActiveReports.Viewer3 Request technical support
Find Event
See Also 


Occurs when the Find dialog finds the requested text in the document.

Syntax

Visual Basic (Declaration) 
Public Event Find() As FindEventHandler
Visual Basic (Usage)Copy Code
Dim instance As Viewer
Dim handler As FindEventHandler
 
AddHandler instance.Find, handler
C# 
public event FindEventHandler Find()

Event Data

The event handler receives an argument of type FindEventArgs containing data related to this event. The following FindEventArgs properties provide information specific to this event.

PropertyDescription
Found Gets the value that determines whether the text was found.
PageIndex Gets the page number where the text was found.

See Also