diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-07-27 15:38:58 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-07-27 15:38:58 +0800 |
commit | 961996a8132eda8671d2de45fe21bfeb43866752 (patch) | |
tree | 18a39f7a1220b4a7e4d4401e1470e5c70d6c7616 /styles.go | |
parent | 4a74951e81c9b0c64b0ce9319e325a1f67c621c6 (diff) |
- Fix `completeCol()` make extra rows, relate issue #87;
- godoc updated
Diffstat (limited to 'styles.go')
-rw-r--r-- | styles.go | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1796,9 +1796,14 @@ func parseFormatStyleSet(style string) (*formatCellStyle, error) { // 634 | ZWR // // Excelize support set custom number format for cell. For example, set number -// as date type in Uruguay (Spanish) format: +// as date type in Uruguay (Spanish) format for Sheet1!A6: // -// xlsx.NewStyle(`{"custom_number_format": "[$-380A]dddd\\,\\ dd\" de \"mmmm\" de \"yyyy;@"}`) +// xlsx := excelize.NewFile() +// xlsx.SetCellValue("Sheet1", "A6", 42920.5) +// style, _ := xlsx.NewStyle(`{"custom_number_format": "[$-380A]dddd\\,\\ dd\" de \"mmmm\" de \"yyyy;@"}`) +// xlsx.SetCellStyle("Sheet1", "A6", "A6", style) +// +// Cell Sheet1!A6 in the Excel Application: martes, 04 de Julio de 2017 // func (f *File) NewStyle(style string) (int, error) { var cellXfsID int |