Merge pull request #56 from sachaos/master

Add GetOffset method on Table
pull/59/head
rivo 7 years ago committed by GitHub
commit 2a7e773060
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save