فهرست منبع

Fix document typo.

Ri Xu 7 سال پیش
والد
کامیت
200437d778
3فایلهای تغییر یافته به همراه28 افزوده شده و 32 حذف شده
  1. 6 10
      sheet.go
  2. 11 11
      styles.go
  3. 11 11
      table.go

+ 6 - 10
sheet.go

@@ -536,13 +536,9 @@ func parseFormatPanesSet(formatSet string) *formatPanes {
 //                                    | been applied, dividing the pane into right and left
 //                                    | regions. In that case, this value specifies the left pane
 //                                    |
-//                                    | Top right pane, when both vertical and horizontal
+//    topRight (Top Right Pane)       | Top right pane, when both vertical and horizontal
 //                                    | splits are applied.
 //                                    |
-//    topRight (Top Right Pane)       | This value is also used when only a vertical split has
-//                                    | splits are applied.
-//                                    |
-//                                    |
 //                                    | This value is also used when only a vertical split has
 //                                    | been applied, dividing the pane into right and left
 //                                    | regions. In that case, this value specifies the right
@@ -577,19 +573,19 @@ func parseFormatPanesSet(formatSet string) *formatPanes {
 // set of ranges.
 //
 // An example of how to freeze column A in the Sheet1 and set the active cell on
-// Sheet1!A16:
+// Sheet1!K16:
 //
-//    xlsx.SetPanes("Sheet1", `{"freeze":true,"split":false,"x_split":1,"y_split":0,"topLeftCell":"B1","activePane":"topRight","panes":[{"sqref":"K16","active_cell":"K16","pane":"topRight"}]}`)
+//    xlsx.SetPanes("Sheet1", `{"freeze":true,"split":false,"x_split":1,"y_split":0,"top_left_cell":"B1","active_pane":"topRight","panes":[{"sqref":"K16","active_cell":"K16","pane":"topRight"}]}`)
 //
 // An example of how to freeze rows 1 to 9 in the Sheet1 and set the active cell
-// on Sheet1!A11:
+// ranges on Sheet1!A11:XFD11:
 //
-//    xlsx.SetPanes("Sheet1", `{"freeze":true,"split":false,"x_split":0,"y_split":9,"topLeftCell":"A34","activePane":"bottomLeft","panes":[{"sqref":"A11:XFD11","active_cell":"A11","pane":"bottomLeft"}]}`)
+//    xlsx.SetPanes("Sheet1", `{"freeze":true,"split":false,"x_split":0,"y_split":9,"top_left_cell":"A34","active_pane":"bottomLeft","panes":[{"sqref":"A11:XFD11","active_cell":"A11","pane":"bottomLeft"}]}`)
 //
 // An example of how to create split panes in the Sheet1 and set the active cell
 // on Sheet1!J60:
 //
-//    xlsx.SetPanes("Sheet1", `{"freeze":false,"split":true,"x_split":3270,"y_split":1800,"topLeftCell":"N57","activePane":"bottomLeft","panes":[{"sqref":"I36","active_cell":"I36"},{"sqref":"G33","active_cell":"G33","pane":"topRight"},{"sqref":"J60","active_cell":"J60","pane":"bottomLeft"},{"sqref":"O60","active_cell":"O60","pane":"bottomRight"}]}`)
+//    xlsx.SetPanes("Sheet1", `{"freeze":false,"split":true,"x_split":3270,"y_split":1800,"top_left_cell":"N57","active_pane":"bottomLeft","panes":[{"sqref":"I36","active_cell":"I36"},{"sqref":"G33","active_cell":"G33","pane":"topRight"},{"sqref":"J60","active_cell":"J60","pane":"bottomLeft"},{"sqref":"O60","active_cell":"O60","pane":"bottomRight"}]}`)
 //
 // An example of how to unfreeze and remove all panes on Sheet1:
 //

+ 11 - 11
styles.go

@@ -1236,13 +1236,13 @@ func parseFormatStyleSet(style string) (*formatStyle, error) {
 //     55    | 4E0A5348/4E0B5348h"65F6"mm"5206
 //     56    | 4E0A5348/4E0B5348h"65F6"mm"5206"ss"79D2
 //     57    | yyyy"5E74"m"6708
-//     58    | m"6708"d"65E5"`,
+//     58    | m"6708"d"65E5"
 //
 // Number format code in ja-jp language:
 //
 //     Index | Symbol
 //    -------+-------------------------------------------
-//     27    | [$-411]ge.m.
+//     27    | [$-411]ge.m.d
 //     28    | [$-411]ggge"年"m"月"d"日
 //     29    | [$-411]ggge"年"m"月"d"日
 //     30    | m/d/y
@@ -1251,18 +1251,18 @@ func parseFormatStyleSet(style string) (*formatStyle, error) {
 //     33    | h"時"mm"分"ss"秒
 //     34    | yyyy"年"m"月
 //     35    | m"月"d"日
-//     36    | [$-411]ge.m.
-//     50    | [$-411]ge.m.
+//     36    | [$-411]ge.m.d
+//     50    | [$-411]ge.m.d
 //     51    | [$-411]ggge"年"m"月"d"日
 //     52    | yyyy"年"m"月
 //     53    | m"月"d"日
 //     54    | [$-411]ggge"年"m"月"d"日
 //     55    | yyyy"年"m"月
 //     56    | m"月"d"日
-//     57    | [$-411]ge.m.
+//     57    | [$-411]ge.m.d
 //     58    | [$-411]ggge"年"m"月"d"日"
 //
-// Number format code in th-th language:
+// Number format code in ko-kr language:
 //
 //     Index | Symbol
 //    -------+-------------------------------------------
@@ -1291,7 +1291,7 @@ func parseFormatStyleSet(style string) (*formatStyle, error) {
 //
 //     Index | Symbol
 //    -------+-------------------------------------------
-//     27    | [$-411]ge.m.
+//     27    | [$-411]ge.m.d
 //     28    | [$-411]ggge"5E74"m"6708"d"65E5
 //     29    | [$-411]ggge"5E74"m"6708"d"65E5
 //     30    | m/d/y
@@ -1300,15 +1300,15 @@ func parseFormatStyleSet(style string) (*formatStyle, error) {
 //     33    | h"6642"mm"5206"ss"79D2
 //     34    | yyyy"5E74"m"6708
 //     35    | m"6708"d"65E5
-//     36    | [$-411]ge.m.
-//     50    | [$-411]ge.m.
+//     36    | [$-411]ge.m.d
+//     50    | [$-411]ge.m.d
 //     51    | [$-411]ggge"5E74"m"6708"d"65E5
 //     52    | yyyy"5E74"m"6708
 //     53    | m"6708"d"65E5
 //     54    | [$-411]ggge"5E74"m"6708"d"65E5
 //     55    | yyyy"5E74"m"6708
 //     56    | m"6708"d"65E5
-//     57    | [$-411]ge.m.
+//     57    | [$-411]ge.m.d
 //     58    | [$-411]ggge"5E74"m"6708"d"65E5"
 //
 // Number format code with unicode values provided for language glyphs where
@@ -1336,7 +1336,7 @@ func parseFormatStyleSet(style string) (*formatStyle, error) {
 //     57    | yyyy"5E74" mm"6708" dd"65E5
 //     58    | mm-dd
 //
-// Number format code in ko-kr language:
+// Number format code in th-th language:
 //
 //     Index | Symbol
 //    -------+-------------------------------------------

+ 11 - 11
table.go

@@ -157,9 +157,9 @@ func parseAutoFilterSet(formatSet string) *formatAutoFilter {
 }
 
 // AutoFilter provides the method to add auto filter in a worksheet by given
-// worksheet name, coordinate area and settings. An autofilter in Excel is a way
-// of filtering a 2D range of data based on some simple criteria. For example
-// applying an autofilter to a cell range A1:D4 in the worksheet 1:
+// worksheet name, coordinate area and settings. An autofilter in Excel is a
+// way of filtering a 2D range of data based on some simple criteria. For
+// example applying an autofilter to a cell range A1:D4 in the Sheet1:
 //
 //    err = xlsx.AutoFilter("Sheet1", "A1", "D4", "")
 //
@@ -170,15 +170,15 @@ func parseAutoFilterSet(formatSet string) *formatAutoFilter {
 // column defines the filter columns in a autofilter range based on simple
 // criteria
 //
-// It isn't sufficient to just specify the filter condition. You must also hide
-// any rows that don't match the filter condition. Rows are hidden using the
-// SetRowVisible() method. Excelize can't filter rows automatically since this
-// isn't part of the file format.
+// It isn't sufficient to just specify the filter condition. You must also
+// hide any rows that don't match the filter condition. Rows are hidden using
+// the SetRowVisible() method. Excelize can't filter rows automatically since
+// this isn't part of the file format.
 //
 // Setting a filter criteria for a column:
 //
-// expression defines the conditions, the following operators are available for
-// setting the filter criteria:
+// expression defines the conditions, the following operators are available
+// for setting the filter criteria:
 //
 //    ==
 //    !=
@@ -189,8 +189,8 @@ func parseAutoFilterSet(formatSet string) *formatAutoFilter {
 //    and
 //    or
 //
-// An expression can comprise a single statement or two statements separated by
-// the and and or operators. For example:
+// An expression can comprise a single statement or two statements separated
+// by the 'and' and 'or' operators. For example:
 //
 //    x <  2000
 //    x >  2000