123456789101112131415161718192021222324252627282930313233 |
- namespace Terminal.Gui {
- /// <summary>
- /// Tabular matrix of data to be displayed in a <see cref="TableView"/>.
- /// </summary>
- public interface ITableSource
- {
- /// <summary>
- /// Gets the number of rows in the table.
- /// </summary>
- int Rows { get; }
- /// <summary>
- /// Gets the number of columns in the table.
- /// </summary>
- int Columns { get; }
- /// <summary>
- /// Gets the label for each column.
- /// </summary>
- string[] ColumnNames { get; }
- /// <summary>
- /// Returns the data at the given indexes of the table (row, column).
- /// </summary>
- /// <param name="row"></param>
- /// <param name="col"></param>
- /// <returns></returns>
- object this[int row, int col]
- {
- get;
- }
- }
- }
|