Class TextChangingEventArgs
Provides data for the TextChanging event of the EditControl control.
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)
Namespace: Syncfusion.Windows.Forms.Edit
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public class TextChangingEventArgs : TextChangedEventArgs
Constructors
TextChangingEventArgs(String, Int32, Int32, TextChange)
Initializes a new instance of TextChangingEventArgs class.
Declaration
public TextChangingEventArgs(string text, int iStartLine, int iStartColumn, TextChange type)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | Event's text. |
System.Int32 | iStartLine | Virtual line of Insert/Delete start. |
System.Int32 | iStartColumn | Virtual column of Insert/Delete start. |
TextChange | type | Type of the event ( Insert/Delete ). |
Properties
Cancel
Gets or sets a value indicating whether the text change has been canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |