| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #nullable disable
-
- namespace Terminal.Gui.Views;
- /// <summary>
- /// Arguments for a <see cref="CellColorGetterDelegate"/>. Describes a cell for which a rendering
- /// <see cref="Scheme"/> is being sought
- /// </summary>
- public class CellColorGetterArgs
- {
- internal CellColorGetterArgs (
- ITableSource table,
- int rowIdx,
- int colIdx,
- object cellValue,
- string representation,
- Scheme rowScheme
- )
- {
- Table = table;
- RowIndex = rowIdx;
- ColIdex = colIdx;
- CellValue = cellValue;
- Representation = representation;
- RowScheme = rowScheme;
- }
- /// <summary>The hard typed value being rendered in the cell for which color is needed</summary>
- public object CellValue { get; }
- /// <summary>The index of column in <see cref="Table"/> for which color is needed</summary>
- public int ColIdex { get; }
- /// <summary>The textual representation of <see cref="CellValue"/> (what will actually be drawn to the screen)</summary>
- public string Representation { get; }
- /// <summary>The index of the row in <see cref="Table"/> for which color is needed</summary>
- public int RowIndex { get; }
- /// <summary>the scheme that is going to be used to render the cell if no cell specific scheme is returned</summary>
- public Scheme RowScheme { get; }
- /// <summary>The data table hosted by the <see cref="TableView"/> control.</summary>
- public ITableSource Table { get; }
- }
|