GetColumnCount returns the (maximum) number of columns in the table.
()
| 783 | |
| 784 | // GetColumnCount returns the (maximum) number of columns in the table. |
| 785 | func (t *Table) GetColumnCount() int { |
| 786 | return t.content.GetColumnCount() |
| 787 | } |
| 788 | |
| 789 | // CellAt returns the row and column located at the given screen coordinates. |
| 790 | // Each returned value may be negative if there is no row and/or cell. This |
nothing calls this directly
no test coverage detected