Class TextView.ContentsChangedEventArgs
Event arguments for events for when the contents of the TextView change. E.g. the ContentsChanged event.
Inherited Members
Namespace: Terminal.Gui
Assembly: Terminal.Gui.dll
Syntax
public class TextView.ContentsChangedEventArgs : EventArgs
Constructors
| Edit this page View SourceContentsChangedEventArgs(int, int)
Creates a new ContentsChanged instance.
Declaration
public ContentsChangedEventArgs(int currentRow, int currentColumn)
Parameters
| Type | Name | Description |
|---|---|---|
| int | currentRow | Contains the row where the change occurred. |
| int | currentColumn | Contains the column where the change occured. |
Properties
| Edit this page View SourceCol
Contains the column where the change occurred.
Declaration
public int Col { get; }
Property Value
| Type | Description |
|---|---|
| int |
Row
Contains the row where the change occurred.
Declaration
public int Row { get; }
Property Value
| Type | Description |
|---|---|
| int |