diff options
author | Ri Xu <xuri.me@gmail.com> | 2018-05-04 11:20:51 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2018-05-04 11:20:51 +0800 |
commit | 934ecec1a96bfd5a1ecf3f1f373332504971c5fd (patch) | |
tree | 70ddbceb026548dbe27f9e8eac393b199ad56cc7 /xmlTable.go | |
parent | 200437d7787d500e791016552036a74ef221f1f4 (diff) |
- Set name of table support in `AddTable()`, relate issue #216;
- godoc and go test has been updated
Diffstat (limited to 'xmlTable.go')
-rw-r--r-- | xmlTable.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmlTable.go b/xmlTable.go index 610950b..b238350 100644 --- a/xmlTable.go +++ b/xmlTable.go @@ -186,6 +186,7 @@ type xlsxTableStyleInfo struct { // formatTable directly maps the format settings of the table. type formatTable struct { + TableName string `json:"table_name"` TableStyle string `json:"table_style"` ShowFirstColumn bool `json:"show_first_column"` ShowLastColumn bool `json:"show_last_column"` |