-
Notifications
You must be signed in to change notification settings - Fork 66
/
excel.pagebreakcollection.yml
199 lines (191 loc) · 7.58 KB
/
excel.pagebreakcollection.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
### YamlMime:TSType
name: Excel.PageBreakCollection
uid: 'excel!Excel.PageBreakCollection:class'
package: excel!
fullName: Excel.PageBreakCollection
summary: ''
remarks: '\[ [API set: ExcelApi 1.9](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
type: class
properties:
- name: context
uid: 'excel!Excel.PageBreakCollection#context:member'
package: excel!
fullName: context
summary: >-
The request context associated with the object. This connects the add-in's process to the Office host
application's process.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'context: RequestContext;'
return:
type: '<xref uid="excel!Excel.RequestContext:class" />'
- name: items
uid: 'excel!Excel.PageBreakCollection#items:member'
package: excel!
fullName: items
summary: Gets the loaded child items in this collection.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'readonly items: Excel.PageBreak[];'
return:
type: '<xref uid="excel!Excel.PageBreak:class" />[]'
methods:
- name: add(pageBreakRange)
uid: 'excel!Excel.PageBreakCollection#add:member(1)'
package: excel!
fullName: add(pageBreakRange)
summary: Adds a page break before the top-left cell of the range specified.
remarks: >-
\[ [API set: ExcelApi 1.9](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]
#### Examples
```TypeScript
// Link to full sample:
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/54-worksheet/worksheet-page-layout.yaml
await Excel.run(async (context) => {
const farmSheet = context.workbook.worksheets.getItem("Print");
farmSheet.horizontalPageBreaks.add("A21:E21");
await context.sync();
});
```
isPreview: false
isDeprecated: false
syntax:
content: 'add(pageBreakRange: Range | string): Excel.PageBreak;'
parameters:
- id: pageBreakRange
description: The range immediately after the page break to be added.
type: '<xref uid="excel!Excel.Range:class" /> | string'
return:
type: '<xref uid="excel!Excel.PageBreak:class" />'
description: ''
- name: getCount()
uid: 'excel!Excel.PageBreakCollection#getCount:member(1)'
package: excel!
fullName: getCount()
summary: Gets the number of page breaks in the collection.
remarks: '\[ [API set: ExcelApi 1.9](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'getCount(): OfficeExtension.ClientResult<number>;'
return:
type: '<xref uid="office!OfficeExtension.ClientResult:class" /><number>'
description: ''
- name: getItem(index)
uid: 'excel!Excel.PageBreakCollection#getItem:member(1)'
package: excel!
fullName: getItem(index)
summary: Gets a page break object via the index.
remarks: '\[ [API set: ExcelApi 1.9](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'getItem(index: number): Excel.PageBreak;'
parameters:
- id: index
description: Index of the page break.
type: number
return:
type: '<xref uid="excel!Excel.PageBreak:class" />'
description: ''
- name: load(options)
uid: 'excel!Excel.PageBreakCollection#load:member(1)'
package: excel!
fullName: load(options)
summary: >-
Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading
the properties.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
load(options?: Excel.Interfaces.PageBreakCollectionLoadOptions & Excel.Interfaces.CollectionLoadOptions):
Excel.PageBreakCollection;
parameters:
- id: options
description: Provides options for which properties of the object to load.
type: >-
<xref uid="excel!Excel.Interfaces.PageBreakCollectionLoadOptions:interface" /> & <xref
uid="excel!Excel.Interfaces.CollectionLoadOptions:interface" />
return:
type: '<xref uid="excel!Excel.PageBreakCollection:class" />'
description: ''
- name: load(propertyNames)
uid: 'excel!Excel.PageBreakCollection#load:member(2)'
package: excel!
fullName: load(propertyNames)
summary: >-
Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading
the properties.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'load(propertyNames?: string | string[]): Excel.PageBreakCollection;'
parameters:
- id: propertyNames
description: A comma-delimited string or an array of strings that specify the properties to load.
type: 'string | string[]'
return:
type: '<xref uid="excel!Excel.PageBreakCollection:class" />'
description: ''
- name: load(propertyNamesAndPaths)
uid: 'excel!Excel.PageBreakCollection#load:member(3)'
package: excel!
fullName: load(propertyNamesAndPaths)
summary: >-
Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading
the properties.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Excel.PageBreakCollection;'
parameters:
- id: propertyNamesAndPaths
description: >-
`propertyNamesAndPaths.select` is a comma-delimited string that specifies the properties to load, and
`propertyNamesAndPaths.expand` is a comma-delimited string that specifies the navigation properties to load.
type: '<xref uid="office!OfficeExtension.LoadOption:interface" />'
return:
type: '<xref uid="excel!Excel.PageBreakCollection:class" />'
description: ''
- name: removePageBreaks()
uid: 'excel!Excel.PageBreakCollection#removePageBreaks:member(1)'
package: excel!
fullName: removePageBreaks()
summary: Resets all manual page breaks in the collection.
remarks: '\[ [API set: ExcelApi 1.9](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'removePageBreaks(): void;'
return:
type: void
description: ''
- name: toJSON()
uid: 'excel!Excel.PageBreakCollection#toJSON:member(1)'
package: excel!
fullName: toJSON()
summary: >-
Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to
`JSON.stringify()`<!-- -->. (`JSON.stringify`<!-- -->, in turn, calls the `toJSON` method of the object that is
passed to it.) Whereas the original `Excel.PageBreakCollection` object is an API object, the `toJSON` method
returns a plain JavaScript object (typed as `Excel.Interfaces.PageBreakCollectionData`<!-- -->) that contains an
"items" array with shallow copies of any loaded properties from the collection's items.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'toJSON(): Excel.Interfaces.PageBreakCollectionData;'
return:
type: '<xref uid="excel!Excel.Interfaces.PageBreakCollectionData:interface" />'
description: ''
extends: '<xref uid="office!OfficeExtension.ClientObject:class" />'