1
0
mirror of https://github.com/rivo/tview.git synced 2025-04-24 13:48:56 +08:00

Add GetOffset method on Table

This commit is contained in:
Takumasa Sakao 2018-02-12 03:35:26 +09:00
parent acf9158c77
commit 453c374c1c

View File

@ -295,6 +295,12 @@ func (t *Table) SetOffset(row, column int) *Table {
return t
}
// GetOffset returns current offset.
// Refer to SetOffset() for details.
func (t *Table) GetOffset() (row, column int) {
return t.rowOffset, t.columnOffset
}
// SetSelectedFunc sets a handler which is called whenever the user presses the
// Enter key on a selected cell/row/column. The handler receives the position of
// the selection and its cell contents. If entire rows are selected, the column