|
112 | 112 | `ApiPivotField` |
113 | 113 |
|
114 | 114 | ```javascript |
115 | | -`ApiPivotField.prototype.GetPivotFilters()` |
116 | | -`ApiPivotField.prototype.AutoSort(order, field, property)` |
117 | | -`ApiPivotField.prototype.AutoSortField` |
118 | | -`ApiPivotField.prototype.AutoSortOrder` |
| 115 | +ApiPivotField.prototype.GetPivotFilters() |
| 116 | +ApiPivotField.prototype.AutoSort(order, field, property) |
| 117 | +ApiPivotField.prototype.AutoSortField |
| 118 | +ApiPivotField.prototype.AutoSortOrder |
| 119 | +``` |
| 120 | + |
119 | 121 | `ApiPivotFilters` |
120 | | -`ApiPivotFilters.prototype.Add(filterType, dataField, value1, value2, |
121 | | -wholeDayFilter)` |
| 122 | + |
| 123 | +```javascript |
| 124 | +ApiPivotFilters.prototype.Add(filterType, dataField, value1, value2, |
| 125 | +wholeDayFilter) |
| 126 | +``` |
| 127 | + |
122 | 128 | `ApiPivotItem` |
123 | | -`ApiPivotItem.prototype.GetVisible()` |
124 | | -`ApiPivotItem.prototype.SetVisible(visible)` |
| 129 | + |
| 130 | +```javascript |
| 131 | +ApiPivotItem.prototype.GetVisible() |
| 132 | +ApiPivotItem.prototype.SetVisible(visible) |
125 | 133 | ``` |
126 | 134 |
|
127 | 135 | Common `ApiRange` methods |
128 | 136 |
|
129 | 137 | ```javascript |
130 | | -`ApiRange.prototype.Offset(rowOffset, columnOffset)` |
131 | | -`ApiRange.prototype.Resize(rowSize, columnSize)` |
132 | | -`ApiRange.prototype.GetRange(cell1, cell2)` |
133 | | -`ApiRange.prototype.GetEntireRow()` |
134 | | -`ApiRange.prototype.GetEntireColumn()` |
| 138 | +ApiRange.prototype.Offset(rowOffset, columnOffset) |
| 139 | +ApiRange.prototype.Resize(rowSize, columnSize) |
| 140 | +ApiRange.prototype.GetRange(cell1, cell2) |
| 141 | +ApiRange.prototype.GetEntireRow() |
| 142 | +ApiRange.prototype.GetEntireColumn() |
135 | 143 | ``` |
136 | 144 |
|
137 | 145 | * Added classes and methods for working with shape geometry |
138 | 146 |
|
139 | 147 | `API` |
140 | 148 |
|
141 | 149 | ```javascript |
142 | | -`Api.prototype.CreateCustomGeometry()` |
143 | | -`Api.prototype.CreatePresetGeometry(preset)` |
144 | | -`ApiShape.prototype.GetGeometry` |
145 | | -`ApiShape.prototype.SetGeometry(geometry)` |
| 150 | +Api.prototype.CreateCustomGeometry() |
| 151 | +Api.prototype.CreatePresetGeometry(preset) |
| 152 | +ApiShape.prototype.GetGeometry |
| 153 | +ApiShape.prototype.SetGeometry(geometry) |
146 | 154 | ``` |
147 | 155 |
|
148 | 156 | `ApiGeometry` |
149 | 157 |
|
150 | 158 | ```javascript |
151 | | -`ApiGeometry.prototype.IsCustom()` |
152 | | -`ApiGeometry.prototype.GetPreset()` |
153 | | -`ApiGeometry.prototype.GetPathCount()` |
154 | | -`ApiGeometry.prototype.GetPath(index)` |
155 | | -`ApiGeometry.prototype.GetPaths()` |
156 | | -`ApiGeometry.prototype.AddPath()` |
157 | | -`ApiGeometry.prototype.GetAdjValue(name)` |
158 | | -`ApiGeometry.prototype.AddAdj(name, value)` |
159 | | -`ApiGeometry.prototype.SetAdjValue(value)` |
160 | | -`ApiGeometry.prototype.AddGuide(name, fmla, x, y, z)` |
161 | | -`ApiGeometry.prototype.SetTextRect(l, t, r, b)` |
162 | | -`ApiGeometry.prototype.AddConnectionPoint(angle, x, y)` |
| 159 | +ApiGeometry.prototype.IsCustom() |
| 160 | +ApiGeometry.prototype.GetPreset() |
| 161 | +ApiGeometry.prototype.GetPathCount() |
| 162 | +ApiGeometry.prototype.GetPath(index) |
| 163 | +ApiGeometry.prototype.GetPaths() |
| 164 | +ApiGeometry.prototype.AddPath() |
| 165 | +ApiGeometry.prototype.GetAdjValue(name) |
| 166 | +ApiGeometry.prototype.AddAdj(name, value) |
| 167 | +ApiGeometry.prototype.SetAdjValue(value) |
| 168 | +ApiGeometry.prototype.AddGuide(name, fmla, x, y, z) |
| 169 | +ApiGeometry.prototype.SetTextRect(l, t, r, b) |
| 170 | +ApiGeometry.prototype.AddConnectionPoint(angle, x, y) |
163 | 171 | ``` |
164 | 172 |
|
165 | 173 | `ApiPath` |
166 | 174 |
|
167 | 175 | ```javascript |
168 | | -`ApiPath.prototype.GetStroke()` |
169 | | -`ApiPath.prototype.SetStroke(stroke)` |
170 | | -`ApiPath.prototype.GetFill()` |
171 | | -`ApiPath.prototype.SetFill(fill)` |
172 | | -`ApiPath.prototype.GetWidth()` |
173 | | -`ApiPath.prototype.SetWidth(width)` |
174 | | -`ApiPath.prototype.GetHeight()` |
175 | | -`ApiPath.prototype.SetHeight(height)` |
176 | | -`ApiPath.prototype.GetCommands()` |
177 | | -`ApiPath.prototype.GetCommandCount()` |
178 | | -`ApiPath.prototype.GetCommand(index)` |
179 | | -`ApiPath.prototype.MoveTo(x, y)` |
180 | | -`ApiPath.prototype.LineTo(x, y)` |
181 | | -`ApiPath.prototype.CubicBezTo(x1, y1, x2, y2, x3, y3)` |
182 | | -`ApiPath.prototype.QuadBezTo(x1, y1, x2, y2)` |
183 | | -`ApiPath.prototype.ArcTo(wR, hR, stAng, swAng)` |
184 | | -`ApiPath.prototype.Close()` |
| 176 | +ApiPath.prototype.GetStroke() |
| 177 | +ApiPath.prototype.SetStroke(stroke) |
| 178 | +ApiPath.prototype.GetFill() |
| 179 | +ApiPath.prototype.SetFill(fill) |
| 180 | +ApiPath.prototype.GetWidth() |
| 181 | +ApiPath.prototype.SetWidth(width) |
| 182 | +ApiPath.prototype.GetHeight() |
| 183 | +ApiPath.prototype.SetHeight(height) |
| 184 | +ApiPath.prototype.GetCommands() |
| 185 | +ApiPath.prototype.GetCommandCount() |
| 186 | +ApiPath.prototype.GetCommand(index) |
| 187 | +ApiPath.prototype.MoveTo(x, y) |
| 188 | +ApiPath.prototype.LineTo(x, y) |
| 189 | +ApiPath.prototype.CubicBezTo(x1, y1, x2, y2, x3, y3) |
| 190 | +ApiPath.prototype.QuadBezTo(x1, y1, x2, y2) |
| 191 | +ApiPath.prototype.ArcTo(wR, hR, stAng, swAng) |
| 192 | +ApiPath.prototype.Close() |
185 | 193 | ``` |
186 | 194 |
|
187 | 195 | `ApiPathCommand` |
188 | 196 |
|
189 | 197 | ```javascript |
190 | | -`ApiPathCommand.prototype.GetType()` |
191 | | -`ApiPathCommand.prototype.GetX()` |
192 | | -`ApiPathCommand.prototype.GetY()` |
193 | | -`ApiPathCommand.prototype.GetX0()` |
194 | | -`ApiPathCommand.prototype.GetY0()` |
195 | | -`ApiPathCommand.prototype.GetX1()` |
196 | | -`ApiPathCommand.prototype.GetY1()` |
197 | | -`ApiPathCommand.prototype.GetX2()` |
198 | | -`ApiPathCommand.prototype.GetY2()` |
199 | | -`ApiPathCommand.prototype.GetWR()` |
200 | | -`ApiPathCommand.prototype.GetHR()` |
201 | | -`ApiPathCommand.prototype.GetStartAngle()` |
202 | | -`ApiPathCommand.prototype.GetSweepAngle()` |
| 198 | +ApiPathCommand.prototype.GetType() |
| 199 | +ApiPathCommand.prototype.GetX() |
| 200 | +ApiPathCommand.prototype.GetY() |
| 201 | +ApiPathCommand.prototype.GetX0() |
| 202 | +ApiPathCommand.prototype.GetY0() |
| 203 | +ApiPathCommand.prototype.GetX1() |
| 204 | +ApiPathCommand.prototype.GetY1() |
| 205 | +ApiPathCommand.prototype.GetX2() |
| 206 | +ApiPathCommand.prototype.GetY2() |
| 207 | +ApiPathCommand.prototype.GetWR() |
| 208 | +ApiPathCommand.prototype.GetHR() |
| 209 | +ApiPathCommand.prototype.GetStartAngle() |
| 210 | +ApiPathCommand.prototype.GetSweepAngle() |
203 | 211 | ``` |
204 | 212 |
|
205 | 213 | ## 9.0.4 |
|
0 commit comments