We're pleased to announce the release of Spire.Doc 13.6.14. This version adds support for setting rounded corners on rectangle shapes, and retrieving move revisions. What’s more, it also fixes several known issues, such as the paragraph text content retrieved was incorrect. More details are listed below.
Here is a list of changes made in this release
| Category | ID | Description |
| New feature | SPIREDOC-11102 | Supports setting rounded corners on rectangle shapes.
if (Cobj is ShapeObject)
{
ShapeObject shape = (ShapeObject)Cobj;
if (shape.ShapeType == ShapeType.RoundRectangle)
{
double cornerRadius = shape.AdjustHandles.GetRoundRectangleCornerRadius();
shape.AdjustHandles.AdjustRoundRectangle(20);
}
}
|
| New feature | SPIREDOC-11335 | Supports retrieving move revisions.
DifferRevisions differRevisions = new DifferRevions(Document) List<DocumentObject> moveRevisions = differRevisions.MoveFromRevisions; List<DocumentObject> movetoRevisions = differRevisions.MoveToRevisions; |
| Bug | SPIREDOC-11060 | Fixes the issue that the paragraph text content retrieved was incorrect. |
| Bug | SPIREDOC-11066 | Fixes the issue where the document language displayed incorrectly when ‘LocaleIdASCII’ was set to Hebrew (1037). |
| Bug | SPIREDOC-11332 | Fixes the issue where extra blank pages appeared when converting Word to PDF. |
Click the link to download Spire.Doc 13.6.14:
More information of Spire.Doc new release or hotfix: