Add GetOffset method on Table

This commit is contained in:
Takumasa Sakao 2018-02-12 03:35:26 +09:00
parent acf9158c77
commit 453c374c1c
1 changed files with 6 additions and 0 deletions

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