Skip to content

Commit 1704acf

Browse files
committed
Fix markdown
1 parent 59172fa commit 1704acf

File tree

1 file changed

+67
-59
lines changed

1 file changed

+67
-59
lines changed

CHANGELOG.md

Lines changed: 67 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -112,94 +112,102 @@
112112
`ApiPivotField`
113113

114114
```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+
119121
`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+
122128
`ApiPivotItem`
123-
`ApiPivotItem.prototype.GetVisible()`
124-
`ApiPivotItem.prototype.SetVisible(visible)`
129+
130+
```javascript
131+
ApiPivotItem.prototype.GetVisible()
132+
ApiPivotItem.prototype.SetVisible(visible)
125133
```
126134

127135
Common `ApiRange` methods
128136

129137
```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()
135143
```
136144

137145
* Added classes and methods for working with shape geometry
138146

139147
`API`
140148

141149
```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)
146154
```
147155

148156
`ApiGeometry`
149157

150158
```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)
163171
```
164172

165173
`ApiPath`
166174

167175
```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()
185193
```
186194

187195
`ApiPathCommand`
188196

189197
```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()
203211
```
204212

205213
## 9.0.4

0 commit comments

Comments
 (0)