Class TextChangedEventArgs
Provides data for the LineChanged 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 TextChangedEventArgs : EventArgs
Constructors
TextChangedEventArgs(String, Int32, Int32, TextChange)
Creates and initializes a new instance of TextChangedEventArgs class.
Declaration
public TextChangedEventArgs(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
StartColumn
Gets or sets virtual column of Insert/Delete start.
Declaration
public int StartColumn { get; set; }
Property Value
Type |
---|
System.Int32 |
StartLine
Gets or sets the virtual line of Insert/Delete start.
Declaration
public int StartLine { get; set; }
Property Value
Type |
---|
System.Int32 |
Text
Gets or sets the events text.
Declaration
public string Text { get; set; }
Property Value
Type |
---|
System.String |
Type
Gets or sets type of the event (Insert/Delete).
Declaration
public TextChange Type { get; set; }
Property Value
Type |
---|
TextChange |
Methods
ToString()
Gets string representation of the object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | String representation of the object. |
Overrides
System.Object.ToString()