EditorViewSearchEventArgs Class
Provides arguments for a search operation within an IEditorView.
public class EditorViewSearchEventArgs : RoutedEventArgs
- Inheritance:
- Object EventArgs RoutedEventArgs Object
Constructors
EditorViewSearchEventArgs(IEditorView, ISearchResultSet)
Initializes a new instance of the EditorViewSearchEventArgs
class.
public EditorViewSearchEventArgs(IEditorView view, ISearchResultSet resultSet)
Parameter | Type | Description |
---|---|---|
view | IEditorView | The IEditorView in which the search occurred. |
resultSet | ISearchResultSet | The ISearchResultSet that contains the result of the search operation. |
Properties
ResultSet
Gets the ISearchResultSet that contains the result of the search operation.
public ISearchResultSet ResultSet { get; }
Property Value
- ISearchResultSet:
The ISearchResultSet that contains the result of the search operation.
View
Gets the IEditorView in which the search occurred.
public IEditorView View { get; }
Property Value
- IEditorView:
The IEditorView in which the search occurred.