Class TextView.ContentsChangedEventArgs
Event arguments for events for when the contents of the TextView change. E.g. the ContentsChanged event.
Inheritance
System.Object
System.EventArgs
TextView.ContentsChangedEventArgs
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: Terminal.Gui
Assembly: Terminal.Gui.dll
Syntax
public class ContentsChangedEventArgs : EventArgs
Constructors
| Improve this Doc View SourceContentsChangedEventArgs(Int32, Int32)
Creates a new ContentsChanged instance.
Declaration
public ContentsChangedEventArgs(int currentRow, int currentColumn)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | currentRow | Contains the row where the change occurred. |
System.Int32 | currentColumn | Contains the column where the change occured. |
Properties
| Improve this Doc View SourceCol
Contains the column where the change occurred.
Declaration
public int Col { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Row
Contains the row where the change occurred.
Declaration
public int Row { get; }
Property Value
Type | Description |
---|---|
System.Int32 |