From 961996a8132eda8671d2de45fe21bfeb43866752 Mon Sep 17 00:00:00 2001 From: Ri Xu Date: Thu, 27 Jul 2017 15:38:58 +0800 Subject: - Fix `completeCol()` make extra rows, relate issue #87; - godoc updated --- styles.go | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'styles.go') diff --git a/styles.go b/styles.go index 20e6593..2e440c2 100644 --- a/styles.go +++ b/styles.go @@ -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 -- cgit v1.2.1