Add changelog for API
This commit is contained in:
parent
ceb99ba9d5
commit
77f106e176
|
@ -1,8 +1,14 @@
|
||||||
personal_ws-1.1 en 534 utf-8
|
personal_ws-1.1 en 563 utf-8
|
||||||
ACOT
|
ACOT
|
||||||
ACOTH
|
ACOTH
|
||||||
ActiveCell
|
ActiveCell
|
||||||
|
AddBookmarkCrossRef
|
||||||
|
AddCaptionCrossRef
|
||||||
AddComment
|
AddComment
|
||||||
|
AddEndnoteCrossRef
|
||||||
|
AddFootnoteCrossRef
|
||||||
|
AddHeadingCrossRef
|
||||||
|
AddNumberedCrossRef
|
||||||
AddSheet
|
AddSheet
|
||||||
adSm
|
adSm
|
||||||
AllFontsGen
|
AllFontsGen
|
||||||
|
@ -12,6 +18,7 @@ Api
|
||||||
ApiRange
|
ApiRange
|
||||||
ApiSlide
|
ApiSlide
|
||||||
ApiWorksheet
|
ApiWorksheet
|
||||||
|
ApplyChartStyle
|
||||||
ApplyTheme
|
ApplyTheme
|
||||||
Asana
|
Asana
|
||||||
ASC
|
ASC
|
||||||
|
@ -183,12 +190,19 @@ gc
|
||||||
gcc
|
gcc
|
||||||
GenerateGuid
|
GenerateGuid
|
||||||
GetAdress
|
GetAdress
|
||||||
|
GetAllCaptionParagraphs
|
||||||
|
GetAllHeadingParagraphs
|
||||||
|
GetAllNumberedParagraphs
|
||||||
GetBottomMargin
|
GetBottomMargin
|
||||||
GetCells
|
GetCells
|
||||||
GetCols
|
GetCols
|
||||||
GetColumnWidth
|
GetColumnWidth
|
||||||
GetCount
|
GetCount
|
||||||
GetCurrentContentControlPr
|
GetCurrentContentControlPr
|
||||||
|
GetEndNotesFirstParagraphs
|
||||||
|
GetFontNames
|
||||||
|
GetFootnotesFirstParagraphs
|
||||||
|
GetHeight
|
||||||
GetHidden
|
GetHidden
|
||||||
GetIndex
|
GetIndex
|
||||||
GetLeftMargin
|
GetLeftMargin
|
||||||
|
@ -207,6 +221,7 @@ GetTopMargin
|
||||||
GetUsedRange
|
GetUsedRange
|
||||||
GetValue
|
GetValue
|
||||||
GetVisible
|
GetVisible
|
||||||
|
GetWidth
|
||||||
GetWpar
|
GetWpar
|
||||||
glyphs
|
glyphs
|
||||||
gnutls
|
gnutls
|
||||||
|
@ -347,6 +362,7 @@ owncloud
|
||||||
oxps
|
oxps
|
||||||
pageDown
|
pageDown
|
||||||
ParaDrawing
|
ParaDrawing
|
||||||
|
Paragarph
|
||||||
param
|
param
|
||||||
params
|
params
|
||||||
passsword
|
passsword
|
||||||
|
@ -416,14 +432,26 @@ SELinux
|
||||||
sessionId
|
sessionId
|
||||||
SetBottomMargin
|
SetBottomMargin
|
||||||
SetColumnWidth
|
SetColumnWidth
|
||||||
|
SetDataPointFill
|
||||||
|
SetDataPointOutLine
|
||||||
SetHidden
|
SetHidden
|
||||||
SetLeftMargin
|
SetLeftMargin
|
||||||
|
SetLegendFill
|
||||||
|
SetLegendOutLine
|
||||||
setLocale
|
setLocale
|
||||||
setMailMergeRecipients
|
setMailMergeRecipients
|
||||||
|
SetMarkerFill
|
||||||
|
SetMarkerOutLine
|
||||||
SetOffset
|
SetOffset
|
||||||
SetPageOrientation
|
SetPageOrientation
|
||||||
|
SetPlotAreaFill
|
||||||
|
SetPlotAreaOutLine
|
||||||
SetRightMargin
|
SetRightMargin
|
||||||
SetRowHeight
|
SetRowHeight
|
||||||
|
SetSeriesFill
|
||||||
|
SetSeriesOutLine
|
||||||
|
SetTitleFill
|
||||||
|
SetTitleOutLine
|
||||||
SetTopMargin
|
SetTopMargin
|
||||||
SetVisible
|
SetVisible
|
||||||
SharedWorker
|
SharedWorker
|
||||||
|
|
54
CHANGELOG.md
54
CHANGELOG.md
|
@ -82,6 +82,60 @@
|
||||||
|
|
||||||
* Ability to set phone in `About` page
|
* Ability to set phone in `About` page
|
||||||
|
|
||||||
|
##### Api
|
||||||
|
|
||||||
|
* `GetFontNames()` methods for `Paragarph` and `Run`
|
||||||
|
* New methods to get cross-reference data:
|
||||||
|
`ApiDocument.GetAllNumberedParagraphs();`,
|
||||||
|
`ApiDocument.GetAllHeadingParagraphs();`,
|
||||||
|
`ApiDocument.GetFootnotesFirstParagraphs();`,
|
||||||
|
`ApiDocument.GetEndNotesFirstParagraphs();`,
|
||||||
|
`ApiDocument.GetAllCaptionParagraphs();`
|
||||||
|
* New methods to set cross-reference data:
|
||||||
|
`ApiParagraph.AddNumberedCrossRef();`,
|
||||||
|
`ApiParagraph.AddHeadingCrossRef();`,
|
||||||
|
`ApiParagraph.AddBookmarkCrossRef();`,
|
||||||
|
`ApiParagraph.AddFootnoteCrossRef();`,
|
||||||
|
`ApiParagraph.AddEndnoteCrossRef();`,
|
||||||
|
`ApiParagraph.AddCaptionCrossRef();`
|
||||||
|
* New methods to replace elements:
|
||||||
|
|
||||||
|
```
|
||||||
|
ApiParagraph.GetPosInParent();
|
||||||
|
ApiParagraph.ReplaceByElement();
|
||||||
|
|
||||||
|
ApiTable.GetPosInParent();
|
||||||
|
ApiTable.ReplaceByElement();
|
||||||
|
|
||||||
|
ApiBlockLvlSdt.GetPosInParent();
|
||||||
|
ApiBlockLvlSdt.ReplaceByElement();
|
||||||
|
```
|
||||||
|
|
||||||
|
* New methods to get size in EMU for drawings
|
||||||
|
`ApiDrawing.GetWidth();` and `ApiDrawing.GetHeight();`
|
||||||
|
* Add new methods for chart:
|
||||||
|
|
||||||
|
```
|
||||||
|
ApiChart.ApplyChartStyle();
|
||||||
|
ApiChart.SetPlotAreaFill();
|
||||||
|
ApiChart.SetPlotAreaOutLine();
|
||||||
|
ApiChart.SetSeriesFill();
|
||||||
|
ApiChart.SetSeriesOutLine();
|
||||||
|
ApiChart.SetDataPointFill();
|
||||||
|
ApiChart.SetDataPointOutLine();
|
||||||
|
ApiChart.SetMarkerFill();
|
||||||
|
ApiChart.SetMarkerOutLine();
|
||||||
|
ApiChart.SetTitleFill();
|
||||||
|
ApiChart.SetTitleOutLine();
|
||||||
|
ApiChart.SetLegendFill();
|
||||||
|
ApiChart.SetLegendOutLine();
|
||||||
|
```
|
||||||
|
|
||||||
|
* Improve support of regexps in code like `String.replace(/\s/g, "")`
|
||||||
|
* Improvements in `oRange.GetValue` and `oRange.GetValue2`
|
||||||
|
|
||||||
|
* Fixes for several methods
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
|
||||||
* All components received countless fixes
|
* All components received countless fixes
|
||||||
|
|
Loading…
Reference in a new issue