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