// TextView.cs: multi-line text editing
namespace Terminal.Gui;
///
/// Event arguments for events for when the contents of the TextView change. E.g. the
/// event.
///
public class ContentsChangedEventArgs : EventArgs
{
/// Creates a new instance.
/// Contains the row where the change occurred.
/// Contains the column where the change occured.
public ContentsChangedEventArgs (int currentRow, int currentColumn)
{
Row = currentRow;
Col = currentColumn;
}
/// Contains the column where the change occurred.
public int Col { get; private set; }
/// Contains the row where the change occurred.
public int Row { get; private set; }
}