Class LinesEventArgs
Provides data for the LineInserted and LineDeleted events 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 LinesEventArgs : SyncfusionEventArgs
Constructors
LinesEventArgs(String[], Int32, Int32, Int32, TextChange)
Initializes a new instance of LinesEventArgs class.
Declaration
public LinesEventArgs(string[] textOfArray, int iStartLine, int iStartColumn, int iLinesCount, TextChange type)
Parameters
Type | Name | Description |
---|---|---|
System.String[] | textOfArray | Event`s text. |
System.Int32 | iStartLine | Virtual line of Insert/Delete start. |
System.Int32 | iStartColumn | Virtual column of Insert/Delete start. |
System.Int32 | iLinesCount | Type of the event ( Insert/Delete ). |
TextChange | type | Type of the event ( Insert/Delete ). |
Properties
LinesCount
Gets or sets the virtual number of lines count.
Declaration
public int LinesCount { get; set; }
Property Value
Type |
---|
System.Int32 |
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 virtual line of Insert/Delete start.
Declaration
public int StartLine { get; set; }
Property Value
Type |
---|
System.Int32 |
Text
Gets or sets the text.
Declaration
public string Text { get; set; }
Property Value
Type |
---|
System.String |
TextOfArray
Gets or sets the collection of text.
Declaration
public string[] TextOfArray { 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. |