Class FindTextEventArgs
Class corresponding to 'Find' event in FindDialog class.
Inheritance
System.Object
System.EventArgs
FindTextEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.HTMLUI
Assembly: Syncfusion.HTMLUI.Windows.dll
Syntax
public class FindTextEventArgs : EventArgs
Constructors
FindTextEventArgs(String, Int32, Boolean, Boolean)
Initializes a new instance of the FindTextEventArgs class
Declaration
public FindTextEventArgs(string text, int startIndex, bool isForward, bool matchCase)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | String text for searching. |
System.Int32 | startIndex | Index from which to start text searching. |
System.Boolean | isForward | Indicates whether order of searching is forward. |
System.Boolean | matchCase | Indicates whether search should match case. |
Properties
IsForward
Gets a value indicating whether the order of searching is forward.
Declaration
public bool IsForward { get; }
Property Value
Type |
---|
System.Boolean |
MatchCase
Gets a value indicating whether search should match case.
Declaration
public bool MatchCase { get; }
Property Value
Type |
---|
System.Boolean |
StartIndex
Gets or sets the index from which searching starts.
Declaration
public int StartIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
Text
Gets the text for searching.
Declaration
public string Text { get; }
Property Value
Type |
---|
System.String |