Skip to content

Commit

Permalink
Update release notes for v2.7.0 and added paper size unit
Browse files Browse the repository at this point in the history
  • Loading branch information
xuri committed Jan 8, 2024
1 parent 5e7e7a9 commit 346e186
Show file tree
Hide file tree
Showing 12 changed files with 214 additions and 214 deletions.
2 changes: 1 addition & 1 deletion ar/releases/v2.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* غير `func (f *File) GetPageMargins(sheet string, opts ...PageMarginsOptionsPtr) error` إلى `func (f *File) GetPageMargins(sheet string) (PageLayoutMarginsOptions, error)`
* غير `func (f *File) GetSheetIndex(sheet string) int` إلى `func (f *File) GetSheetIndex(sheet string) (int, error)`
* غير `func (f *File) SetSheetName(source, target string)` إلى `func (f *File) SetSheetName(source, target string) error`
* غير `func (f *File) GetSheetVisible(sheet string)` إلى `func (f *File) GetSheetVisible(sheet string) (bool, error)`
* غير `func (f *File) GetSheetVisible(sheet string) bool` إلى `func (f *File) GetSheetVisible(sheet string) (bool, error)`
* غير `func (f *File) DeleteSheet(sheet string)` إلى `func (f *File) DeleteSheet(sheet string) error`
* غير `func (f *File) NewSheet(sheet string) int` إلى `func (f *File) NewSheet(sheet string) (int, error)`
* غير `func (f *File) NewConditionalStyle(style string) (int, error)` إلى `func (f *File) NewConditionalStyle(style *Style) (int, error)`
Expand Down
2 changes: 1 addition & 1 deletion de/releases/v2.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Die bemerkenswertesten Änderungen in dieser Version sind:
* Ändern `func (f *File) GetPageMargins(sheet string, opts ...PageMarginsOptionsPtr) error` in `func (f *File) GetPageMargins(sheet string) (PageLayoutMarginsOptions, error)`
* Ändern `func (f *File) GetSheetIndex(sheet string) int` in `func (f *File) GetSheetIndex(sheet string) (int, error)`
* Ändern `func (f *File) SetSheetName(source, target string)` in `func (f *File) SetSheetName(source, target string) error`
* Ändern `func (f *File) GetSheetVisible(sheet string)` in `func (f *File) GetSheetVisible(sheet string) (bool, error)`
* Ändern `func (f *File) GetSheetVisible(sheet string) bool` in `func (f *File) GetSheetVisible(sheet string) (bool, error)`
* Ändern `func (f *File) DeleteSheet(sheet string)` in `func (f *File) DeleteSheet(sheet string) error`
* Ändern `func (f *File) NewSheet(sheet string) int` in `func (f *File) NewSheet(sheet string) (int, error)`
* Ändern `func (f *File) NewConditionalStyle(style string) (int, error)` in `func (f *File) NewConditionalStyle(style *Style) (int, error)`
Expand Down
2 changes: 1 addition & 1 deletion en/releases/v2.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The most notable changes in this release are:
* Change the `func (f *File) GetPageMargins(sheet string, opts ...PageMarginsOptionsPtr) error` to `func (f *File) GetPageMargins(sheet string) (PageLayoutMarginsOptions, error)`
* Change the `func (f *File) GetSheetIndex(sheet string) int` to `func (f *File) GetSheetIndex(sheet string) (int, error)`
* Change the `func (f *File) SetSheetName(source, target string)` to `func (f *File) SetSheetName(source, target string) error`
* Change the `func (f *File) GetSheetVisible(sheet string)` to `func (f *File) GetSheetVisible(sheet string) (bool, error)`
* Change the `func (f *File) GetSheetVisible(sheet string) bool` to `func (f *File) GetSheetVisible(sheet string) (bool, error)`
* Change the `func (f *File) DeleteSheet(sheet string)` to `func (f *File) DeleteSheet(sheet string) error`
* Change the `func (f *File) NewSheet(sheet string) int` to `func (f *File) NewSheet(sheet string) (int, error)`
* Change the `func (f *File) NewConditionalStyle(style string) (int, error)` to `func (f *File) NewConditionalStyle(style *Style) (int, error)`
Expand Down
2 changes: 1 addition & 1 deletion es/releases/v2.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Los cambios más notables en esta versión son:
* Cambiar `func (f *File) GetPageMargins(sheet string, opts ...PageMarginsOptionsPtr) error` a `func (f *File) GetPageMargins(sheet string) (PageLayoutMarginsOptions, error)`
* Cambiar `func (f *File) GetSheetIndex(sheet string) int` a `func (f *File) GetSheetIndex(sheet string) (int, error)`
* Cambiar `func (f *File) SetSheetName(source, target string)` a `func (f *File) SetSheetName(source, target string) error`
* Cambiar `func (f *File) GetSheetVisible(sheet string)` a `func (f *File) GetSheetVisible(sheet string) (bool, error)`
* Cambiar `func (f *File) GetSheetVisible(sheet string) bool` a `func (f *File) GetSheetVisible(sheet string) (bool, error)`
* Cambiar `func (f *File) DeleteSheet(sheet string)` a `func (f *File) DeleteSheet(sheet string) error`
* Cambiar `func (f *File) NewSheet(sheet string) int` a `func (f *File) NewSheet(sheet string) (int, error)`
* Cambiar `func (f *File) NewConditionalStyle(style string) (int, error)` a `func (f *File) NewConditionalStyle(style *Style) (int, error)`
Expand Down
2 changes: 1 addition & 1 deletion fr/releases/v2.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Les changements les plus notables de cette version sont:
* Changer `func (f *File) GetPageMargins(sheet string, opts ...PageMarginsOptionsPtr) error` en `func (f *File) GetPageMargins(sheet string) (PageLayoutMarginsOptions, error)`
* Changer `func (f *File) GetSheetIndex(sheet string) int` en `func (f *File) GetSheetIndex(sheet string) (int, error)`
* Changer `func (f *File) SetSheetName(source, target string)` en `func (f *File) SetSheetName(source, target string) error`
* Changer `func (f *File) GetSheetVisible(sheet string)` en `func (f *File) GetSheetVisible(sheet string) (bool, error)`
* Changer `func (f *File) GetSheetVisible(sheet string) bool` en `func (f *File) GetSheetVisible(sheet string) (bool, error)`
* Changer `func (f *File) DeleteSheet(sheet string)` en `func (f *File) DeleteSheet(sheet string) error`
* Changer `func (f *File) NewSheet(sheet string) int` en `func (f *File) NewSheet(sheet string) (int, error)`
* Changer `func (f *File) NewConditionalStyle(style string) (int, error)` en `func (f *File) NewConditionalStyle(style *Style) (int, error)`
Expand Down
2 changes: 1 addition & 1 deletion ja/releases/v2.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* `func (f *File) GetPageMargins(sheet string, opts ...PageMarginsOptionsPtr) error``func (f *File) GetPageMargins(sheet string) (PageLayoutMarginsOptions, error)` に変更
* `func (f *File) GetSheetIndex(sheet string) int``func (f *File) GetSheetIndex(sheet string) (int, error)` に変更
* `func (f *File) SetSheetName(source, target string)``func (f *File) SetSheetName(source, target string) error` に変更
* `func (f *File) GetSheetVisible(sheet string)``func (f *File) GetSheetVisible(sheet string) (bool, error)` に変更
* `func (f *File) GetSheetVisible(sheet string) bool``func (f *File) GetSheetVisible(sheet string) (bool, error)` に変更
* `func (f *File) DeleteSheet(sheet string)``func (f *File) DeleteSheet(sheet string) error` に変更
* `func (f *File) NewSheet(sheet string) int``func (f *File) NewSheet(sheet string) (int, error)` に変更
* `func (f *File) NewConditionalStyle(style string) (int, error)``func (f *File) NewConditionalStyle(style *Style) (int, error)` に変更
Expand Down
2 changes: 1 addition & 1 deletion ko/releases/v2.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* `func (f *File) GetPageMargins(sheet string, opts ...PageMarginsOptionsPtr) error``func (f *File) GetPageMargins(sheet string) (PageLayoutMarginsOptions, error)` 로 변경
* `func (f *File) GetSheetIndex(sheet string) int``func (f *File) GetSheetIndex(sheet string) (int, error)` 로 변경
* `func (f *File) SetSheetName(source, target string)``func (f *File) SetSheetName(source, target string) error` 로 변경
* `func (f *File) GetSheetVisible(sheet string)``func (f *File) GetSheetVisible(sheet string) (bool, error)` 로 변경
* `func (f *File) GetSheetVisible(sheet string) bool``func (f *File) GetSheetVisible(sheet string) (bool, error)` 로 변경
* `func (f *File) DeleteSheet(sheet string)``func (f *File) DeleteSheet(sheet string) error` 로 변경
* `func (f *File) NewSheet(sheet string) int``func (f *File) NewSheet(sheet string) (int, error)` 로 변경
* `func (f *File) NewConditionalStyle(style string) (int, error)``func (f *File) NewConditionalStyle(style *Style) (int, error)` 로 변경
Expand Down
2 changes: 1 addition & 1 deletion ru/releases/v2.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Изменить `func (f *File) GetPageMargins(sheet string, opts ...PageMarginsOptionsPtr) error` на `func (f *File) GetPageMargins(sheet string) (PageLayoutMarginsOptions, error)`
* Изменить `func (f *File) GetSheetIndex(sheet string) int` на `func (f *File) GetSheetIndex(sheet string) (int, error)`
* Изменить `func (f *File) SetSheetName(source, target string)` на `func (f *File) SetSheetName(source, target string) error`
* Изменить `func (f *File) GetSheetVisible(sheet string)` на `func (f *File) GetSheetVisible(sheet string) (bool, error)`
* Изменить `func (f *File) GetSheetVisible(sheet string) bool` на `func (f *File) GetSheetVisible(sheet string) (bool, error)`
* Изменить `func (f *File) DeleteSheet(sheet string)` на `func (f *File) DeleteSheet(sheet string) error`
* Изменить `func (f *File) NewSheet(sheet string) int` на `func (f *File) NewSheet(sheet string) (int, error)`
* Изменить `func (f *File) NewConditionalStyle(style string) (int, error)` на `func (f *File) NewConditionalStyle(style *Style) (int, error)`
Expand Down
2 changes: 1 addition & 1 deletion zh-hans/releases/v2.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*`func (f *File) GetPageMargins(sheet string, opts ...PageMarginsOptionsPtr) error` 修改为 `func (f *File) GetPageMargins(sheet string) (PageLayoutMarginsOptions, error)`
*`func (f *File) GetSheetIndex(sheet string) int` 修改为 `func (f *File) GetSheetIndex(sheet string) (int, error)`
*`func (f *File) SetSheetName(source, target string)` 修改为 `func (f *File) SetSheetName(source, target string) error`
*`func (f *File) GetSheetVisible(sheet string)` 修改为 `func (f *File) GetSheetVisible(sheet string) (bool, error)`
*`func (f *File) GetSheetVisible(sheet string) bool` 修改为 `func (f *File) GetSheetVisible(sheet string) (bool, error)`
*`func (f *File) DeleteSheet(sheet string)` 修改为 `func (f *File) DeleteSheet(sheet string) error`
*`func (f *File) NewSheet(sheet string) int` 修改为 `func (f *File) NewSheet(sheet string) (int, error)`
*`func (f *File) NewConditionalStyle(style string) (int, error)` 修改为 `func (f *File) NewConditionalStyle(style *Style) (int, error)`
Expand Down
204 changes: 102 additions & 102 deletions zh-hans/workbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,122 +338,122 @@ func (f *File) SetPageLayout(sheet string, opts *PageLayoutOptions) error

索引 | 纸张大小
---|---
1 | 信纸 8½ × 11 英寸
2 | 简式信纸 8½ × 11 英寸
3 | 卡片 11 × 17 英寸
4 | 账单 17 × 11 英寸
5 | 律师公文纸 8½ × 14 英寸
6 | 报告单 5½ × 8½ 英寸
7 | 行政公文纸 7½ × 10 英寸
8 | A3 297 × 420 毫米
9 | A4 210 × 297 毫米
10 | A4(小) 210 × 297 毫米
11 | A5 148 × 210 毫米
12 | B4 250 × 353 毫米
13 | B5 176 × 250 毫米
14 | 对开本 8½ × 13 英寸
15 | 四开 215 × 275 毫米
16 | 美式标准纸张 10 × 14 英寸
17 | 美式标准纸张 11 × 17 英寸
18 | 便签 8.5 × 11 英寸
19 | 信封 #9 3.875 × 8.875 英寸
20 | 信封 #10 4⅛ × 9½ 英寸
21 | 信封 #11 4.5 × 10.375 英寸
22 | 信封 #12 4.75 × 11 英寸
23 | 信封 #14 5 × 11.5 英寸
24 | C paper 17 × 22 英寸
25 | D paper 22 × 34 英寸
26 | E paper 34 × 44 英寸
27 | 信封 DL 110 × 220 毫米
28 | 信封 C5 162 × 229 毫米
29 | 信封 C3 324 × 458 毫米
30 | 信封 C4 229 × 324 毫米
31 | 信封 C6 114 × 162 毫米
32 | 信封 C65 114 × 229 毫米
33 | 信封 B4 250 × 353 毫米
34 | 信封 B5 176 × 250 毫米
35 | 信封 B6 176 × 125 毫米
36 | 信封 Italy 110 × 230 毫米
37 | 君主式信封 3.88 × 7.5 英寸
38 | 6¾ 信封 3.625 × 6.5 英寸
39 | 美国标准 fanfold 14.875 × 11 英寸
40 | 德国标准 fanfold 8.5 × 12 英寸
41 | 德国法律专用纸 fanfold 8.5 × 13 英寸
42 | ISO B4 250 × 353 毫米
43 | 日式明信片 100 × 148 毫米
44 | Standard paper 9 × 11 英寸
45 | Standard paper 10 × 11 英寸
46 | Standard paper 15 × 11 英寸
47 | 邀请信 220 × 220 毫米
50 | 信纸加大 9.275 × 12 英寸
51 | 特大法律专用纸 9.275 × 15 英寸
52 | Tabloid extra paper 11.69 × 18 英寸
53 | A4 特大 236 × 322 毫米
1 | 信纸 8½ 英寸 × 11 英寸
2 | 简式信纸 8½ 英寸 × 11 英寸
3 | 卡片 11 英寸 × 17 英寸
4 | 账单 17 英寸 × 11 英寸
5 | 律师公文纸 8½ 英寸 × 14 英寸
6 | 报告单 5½ 英寸 × 8½ 英寸
7 | 行政公文纸 7½ 英寸 × 10 英寸
8 | A3 297 毫米 × 420 毫米
9 | A4 210 毫米 × 297 毫米
10 | A4(小) 210 毫米 × 297 毫米
11 | A5 148 毫米 × 210 毫米
12 | B4 250 毫米 × 353 毫米
13 | B5 176 毫米 × 250 毫米
14 | 对开本 8½ 英寸 × 13 英寸
15 | 四开 215 毫米 × 275 毫米
16 | 美式标准纸张 10 英寸 × 14 英寸
17 | 美式标准纸张 11 英寸 × 17 英寸
18 | 便签 8.5 英寸 × 11 英寸
19 | 信封 #9 3.875 英寸 × 8.875 英寸
20 | 信封 #10 4英寸 × 9½ 英寸
21 | 信封 #11 4.5 英寸 × 10.375 英寸
22 | 信封 #12 4.75 英寸 × 11 英寸
23 | 信封 #14 5 英寸 × 11.5 英寸
24 | C paper 17 英寸 × 22 英寸
25 | D paper 22 英寸 × 34 英寸
26 | E paper 34 英寸 × 44 英寸
27 | 信封 DL 110 毫米 × 220 毫米
28 | 信封 C5 162 毫米 × 229 毫米
29 | 信封 C3 324 毫米 × 458 毫米
30 | 信封 C4 229 毫米 × 324 毫米
31 | 信封 C6 114 毫米 × 162 毫米
32 | 信封 C65 114 毫米 × 229 毫米
33 | 信封 B4 250 毫米 × 353 毫米
34 | 信封 B5 176 毫米 × 250 毫米
35 | 信封 B6 176 毫米 × 125 毫米
36 | 信封 Italy 110 毫米 × 230 毫米
37 | 君主式信封 3.88 英寸 × 7.5 英寸
38 | 6¾ 信封 3.625 英寸 × 6.5 英寸
39 | 美国标准 fanfold 14.875 英寸 × 11 英寸
40 | 德国标准 fanfold 8.5 英寸 × 12 英寸
41 | 德国法律专用纸 fanfold 8.5 英寸 × 13 英寸
42 | ISO B4 250 毫米 × 353 毫米
43 | 日式明信片 100 毫米 × 148 毫米
44 | Standard paper 9 英寸 × 11 英寸
45 | Standard paper 10 英寸 × 11 英寸
46 | Standard paper 15 英寸 × 11 英寸
47 | 邀请信 220 毫米 × 220 毫米
50 | 信纸加大 9.275 英寸 × 12 英寸
51 | 特大法律专用纸 9.275 英寸 × 15 英寸
52 | Tabloid extra paper 11.69 英寸 × 18 英寸
53 | A4 特大 236 毫米 × 322 毫米
54 | 信纸横向旋转 8.275 × 11 英寸
55 | A4 横向旋转 210 × 297 毫米
56 | 信纸特大横向旋转 9.275 × 12 英寸
57 | SuperA/SuperA/A4 paper 227 × 356 毫米
58 | SuperB/SuperB/A3 paper 305 × 487 毫米
59 | 信纸加大 8.5 × 12.69 英寸
60 | A4 加大 210 × 330 毫米
61 | A5 横向旋转 148 × 210 毫米
62 | JIS B5 横向旋转 182 × 257 毫米
63 | A3 特大 322 × 445 毫米
64 | A5 特大 174 × 235 毫米
65 | ISO B5 特大 201 × 276 毫米
66 | A2 420 × 594 毫米
67 | A3 横向旋转 297 × 420 毫米
68 | A3 特大横向旋转 322 × 445 毫米
69 | 双层日式明信片 200 × 148 毫米
70 | A6 105 × 148 毫米
55 | A4 横向旋转 210 毫米 × 297 毫米
56 | 信纸特大横向旋转 9.275 英寸 × 12 英寸
57 | SuperA/SuperA/A4 paper 227 毫米 × 356 毫米
58 | SuperB/SuperB/A3 paper 305 毫米 × 487 毫米
59 | 信纸加大 8.5 英寸 × 12.69 英寸
60 | A4 加大 210 毫米 × 330 毫米
61 | A5 横向旋转 148 毫米 × 210 毫米
62 | JIS B5 横向旋转 182 毫米 × 257 毫米
63 | A3 特大 322 毫米 × 445 毫米
64 | A5 特大 174 毫米 × 235 毫米
65 | ISO B5 特大 201 毫米 × 276 毫米
66 | A2 420 毫米 × 594 毫米
67 | A3 横向旋转 297 毫米 × 420 毫米
68 | A3 特大横向旋转 322 毫米 × 445 毫米
69 | 双层日式明信片 200 毫米 × 148 毫米
70 | A6 105 毫米 × 148 毫米
71 | 日式信封 Kaku #2
72 | 日式信封 Kaku #3
73 | 日式信封 Chou #3
74 | 日式信封 Chou #4
75 | 信纸横向旋转 11 × 8½ 英寸
76 | A3 横向旋转 420 × 297 毫米
77 | A4 横向旋转 297 × 210 毫米
78 | A5 横向旋转 210 × 148 毫米
79 | B4 (JIS) 横向旋转 364 × 257 毫米
80 | B5 (JIS) 横向旋转 257 × 182 毫米
81 | 日式明信片 横向旋转 148 × 100 毫米
82 | 双层日式明信片 横向旋转 148 × 200 毫米
83 | A6 横向旋转 148 × 105 毫米
75 | 信纸横向旋转 11 英寸 × 8½ 英寸
76 | A3 横向旋转 420 毫米 × 297 毫米
77 | A4 横向旋转 297 毫米 × 210 毫米
78 | A5 横向旋转 210 毫米 × 148 毫米
79 | B4 (JIS) 横向旋转 364 毫米 × 257 毫米
80 | B5 (JIS) 横向旋转 257 毫米 × 182 毫米
81 | 日式明信片 横向旋转 148 毫米 × 100 毫米
82 | 双层日式明信片 横向旋转 148 毫米 × 200 毫米
83 | A6 横向旋转 148 毫米 × 105 毫米
84 | 日式信封 Kaku #2 横向旋转
85 | 日式信封 Kaku #3 横向旋转
86 | 日式信封 Chou #3 横向旋转
87 | 日式信封 Chou #4 横向旋转
88 | B6 (JIS) 128 × 182 毫米
89 | B6 (JIS) 横向旋转 182 × 128 毫米
90 | 12 × 11 英寸
88 | B6 (JIS) 128 毫米 × 182 毫米
89 | B6 (JIS) 横向旋转 182 毫米 × 128 毫米
90 | 12 英寸 × 11 英寸
91 | 日式信封 You #4
92 | 日式信封 You #4 横向旋转
93 | 中式 16146 × 215 毫米
94 | 中式 3297 × 151 毫米
95 | 中式大 3297 × 151 毫米
96 | 中式信封 #1 102 × 165 毫米
97 | 中式信封 #2 102 × 176 毫米
98 | 中式信封 #3 125 × 176 毫米
99 | 中式信封 #4 110 × 208 毫米
100 | 中式信封 #5 110 × 220 毫米
101 | 中式信封 #6 120 × 230 毫米
102 | 中式信封 #7 160 × 230 毫米
103 | 中式信封 #8 120 × 309 毫米
104 | 中式信封 #9 229 × 324 毫米
105 | 中式信封 #10 324 × 458 毫米
93 | 中式 16146 毫米 × 215 毫米
94 | 中式 3297 毫米 × 151 毫米
95 | 中式大 3297 毫米 × 151 毫米
96 | 中式信封 #1 102 毫米 × 165 毫米
97 | 中式信封 #2 102 毫米 × 176 毫米
98 | 中式信封 #3 125 毫米 × 176 毫米
99 | 中式信封 #4 110 毫米 × 208 毫米
100 | 中式信封 #5 110 毫米 × 220 毫米
101 | 中式信封 #6 120 毫米 × 230 毫米
102 | 中式信封 #7 160 毫米 × 230 毫米
103 | 中式信封 #8 120 毫米 × 309 毫米
104 | 中式信封 #9 229 毫米 × 324 毫米
105 | 中式信封 #10 324 毫米 × 458 毫米
106 | 中式 16 开 横向旋转
107 | 中式 32 开 横向旋转
108 | 中式大 32 开 横向旋转
109 | 中式信封 #1 横向旋转 165 × 102 毫米
110 | 中式信封 #2 横向旋转 176 × 102 毫米
111 | 中式信封 #3 横向旋转 176 × 125 毫米
112 | 中式信封 #4 横向旋转 208 × 110 毫米
113 | 中式信封 #5 横向旋转 220 × 110 毫米
114 | 中式信封 #6 横向旋转 230 × 120 毫米
115 | 中式信封 #7 横向旋转 230 × 160 毫米
116 | 中式信封 #8 横向旋转 309 × 120 毫米
117 | 中式信封 #9 横向旋转 324 × 229 毫米
118 | 中式信封 #10 横向旋转 458 × 324 毫米
109 | 中式信封 #1 横向旋转 165 毫米 × 102 毫米
110 | 中式信封 #2 横向旋转 176 毫米 × 102 毫米
111 | 中式信封 #3 横向旋转 176 毫米 × 125 毫米
112 | 中式信封 #4 横向旋转 208 毫米 × 110 毫米
113 | 中式信封 #5 横向旋转 220 毫米 × 110 毫米
114 | 中式信封 #6 横向旋转 230 毫米 × 120 毫米
115 | 中式信封 #7 横向旋转 230 毫米 × 160 毫米
116 | 中式信封 #8 横向旋转 309 毫米 × 120 毫米
117 | 中式信封 #9 横向旋转 324 毫米 × 229 毫米
118 | 中式信封 #10 横向旋转 458 毫米 × 324 毫米

`Orientation` 属性用以指定页面布局方向,默认页面布局方向为“纵向”,可选值为 `portrait``landscape`

Expand Down
Loading

0 comments on commit 346e186

Please sign in to comment.