Skip to content

Commit d4fb9c4

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents aafeac3 + a31296e commit d4fb9c4

File tree

4 files changed

+32
-1
lines changed

4 files changed

+32
-1
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ Feel free to explore the [Developer's Guide](https://docs.aspose.cloud/display/w
1616
- Add & remove watermarks and protection.
1717
- Read & write access to Document Object Model.
1818

19+
## Enhancements in Version 25.2
20+
21+
- Added 'IdPrefix' property for HtmlFixedSaveOptionsData and SvgSaveOptionsData class.
22+
23+
1924
## Enhancements in Version 24.12
2025

2126
- Added 'RenderChoiceFormFieldBorder' property for PdfSaveOptionsData class.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "asposewordscloud",
3-
"version": "25.1.0",
3+
"version": "25.2.0",
44
"description": "Aspose.Words Cloud SDK for Node.js",
55
"homepage": "https://products.aspose.cloud/words/cloud",
66
"author": {

src/model/htmlFixedSaveOptionsData.ts

+13
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ export class HtmlFixedSaveOptionsData extends FixedPageSaveOptionsData {
7676
baseName: "FontFormat",
7777
type: "HtmlFixedSaveOptionsData.FontFormatEnum",
7878
},
79+
{
80+
name: "idPrefix",
81+
baseName: "IdPrefix",
82+
type: "string",
83+
},
7984
{
8085
name: "pageHorizontalAlignment",
8186
baseName: "PageHorizontalAlignment",
@@ -156,6 +161,14 @@ export class HtmlFixedSaveOptionsData extends FixedPageSaveOptionsData {
156161
*/
157162
public fontFormat: HtmlFixedSaveOptionsData.FontFormatEnum;
158163

164+
/**
165+
* Gets or sets a prefix that is prepended to all generated element IDs in the output document.
166+
* Default value is null and no prefix is prepended.
167+
* If the prefix is specified, it can contain only letters, digits, underscores, and hyphens,
168+
* and must start with a letter.
169+
*/
170+
public idPrefix: string;
171+
159172
/**
160173
* Gets or sets the horizontal alignment of pages in the HTML document.
161174
* The default value is HtmlFixedHorizontalPageAlignment.Center.

src/model/svgSaveOptionsData.ts

+13
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ export class SvgSaveOptionsData extends FixedPageSaveOptionsData {
5151
baseName: "FitToViewPort",
5252
type: "boolean",
5353
},
54+
{
55+
name: "idPrefix",
56+
baseName: "IdPrefix",
57+
type: "string",
58+
},
5459
{
5560
name: "maxImageResolution",
5661
baseName: "MaxImageResolution",
@@ -95,6 +100,14 @@ export class SvgSaveOptionsData extends FixedPageSaveOptionsData {
95100
*/
96101
public fitToViewPort: boolean;
97102

103+
/**
104+
* Gets or sets specifies a prefix that is prepended to all generated element IDs in the output document.
105+
* Default value is null and no prefix is prepended.
106+
* If the prefix is specified, it can contain only letters, digits, underscores, and hyphens,
107+
* and must start with a letter.
108+
*/
109+
public idPrefix: string;
110+
98111
/**
99112
* Gets or sets a value in pixels per inch that limits resolution of exported raster images.
100113
* If the value of this property is non-zero, it limits resolution of exported raster images.

0 commit comments

Comments
 (0)