namespace Terminal.Gui; /// /// Arguments for . Describes a row of data in a /// for which is sought. /// public class RowColorGetterArgs { internal RowColorGetterArgs (ITableSource table, int rowIdx) { Table = table; RowIndex = rowIdx; } /// The index of the row in for which color is needed public int RowIndex { get; } /// The data table hosted by the control. public ITableSource Table { get; } }