diff --git a/table.go b/table.go index 92b94cc..f2f2efa 100644 --- a/table.go +++ b/table.go @@ -562,6 +562,11 @@ func (t *Table) SetContent(content TableContent) *Table { return t } +// GetContent returns current table's content +func (t *Table) GetContent() TableContent { + return t.content +} + // Clear removes all table data. func (t *Table) Clear() *Table { t.content.Clear()