Skip to content

Commit eb972e5

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents 28d249c + 479baef commit eb972e5

File tree

839 files changed

+175408
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

839 files changed

+175408
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
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.

dev/api/models/html_fixed_save_options_data.go

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ type IHtmlFixedSaveOptionsData interface {
9191
SetExportFormFields(value *bool)
9292
GetFontFormat() *string
9393
SetFontFormat(value *string)
94+
GetIdPrefix() *string
95+
SetIdPrefix(value *string)
9496
GetPageHorizontalAlignment() *string
9597
SetPageHorizontalAlignment(value *string)
9698
GetPageMargins() *float64
@@ -188,6 +190,9 @@ type HtmlFixedSaveOptionsData struct {
188190
// Container class for fixed html save options.
189191
FontFormat *string `json:"FontFormat,omitempty"`
190192

193+
// Container class for fixed html save options.
194+
IdPrefix *string `json:"IdPrefix,omitempty"`
195+
191196
// Container class for fixed html save options.
192197
PageHorizontalAlignment *string `json:"PageHorizontalAlignment,omitempty"`
193198

@@ -568,6 +573,18 @@ func (obj *HtmlFixedSaveOptionsData) Deserialize(json map[string]interface{}) {
568573

569574
}
570575

576+
if jsonValue, exists := json["IdPrefix"]; exists {
577+
if parsedValue, valid := jsonValue.(string); valid {
578+
obj.IdPrefix = &parsedValue
579+
}
580+
581+
} else if jsonValue, exists := json["idPrefix"]; exists {
582+
if parsedValue, valid := jsonValue.(string); valid {
583+
obj.IdPrefix = &parsedValue
584+
}
585+
586+
}
587+
571588
if jsonValue, exists := json["PageHorizontalAlignment"]; exists {
572589
if parsedValue, valid := jsonValue.(string); valid {
573590
obj.PageHorizontalAlignment = &parsedValue
@@ -887,6 +904,14 @@ func (obj *HtmlFixedSaveOptionsData) SetFontFormat(value *string) {
887904
obj.FontFormat = value
888905
}
889906

907+
func (obj *HtmlFixedSaveOptionsData) GetIdPrefix() *string {
908+
return obj.IdPrefix
909+
}
910+
911+
func (obj *HtmlFixedSaveOptionsData) SetIdPrefix(value *string) {
912+
obj.IdPrefix = value
913+
}
914+
890915
func (obj *HtmlFixedSaveOptionsData) GetPageHorizontalAlignment() *string {
891916
return obj.PageHorizontalAlignment
892917
}

dev/api/models/svg_save_options_data.go

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ type ISvgSaveOptionsData interface {
8181
SetExportEmbeddedImages(value *bool)
8282
GetFitToViewPort() *bool
8383
SetFitToViewPort(value *bool)
84+
GetIdPrefix() *string
85+
SetIdPrefix(value *string)
8486
GetMaxImageResolution() *int32
8587
SetMaxImageResolution(value *int32)
8688
GetResourcesFolder() *string
@@ -159,6 +161,9 @@ type SvgSaveOptionsData struct {
159161
// Container class for svg save options.
160162
FitToViewPort *bool `json:"FitToViewPort,omitempty"`
161163

164+
// Container class for svg save options.
165+
IdPrefix *string `json:"IdPrefix,omitempty"`
166+
162167
// Container class for svg save options.
163168
MaxImageResolution *int32 `json:"MaxImageResolution,omitempty"`
164169

@@ -473,6 +478,18 @@ func (obj *SvgSaveOptionsData) Deserialize(json map[string]interface{}) {
473478

474479
}
475480

481+
if jsonValue, exists := json["IdPrefix"]; exists {
482+
if parsedValue, valid := jsonValue.(string); valid {
483+
obj.IdPrefix = &parsedValue
484+
}
485+
486+
} else if jsonValue, exists := json["idPrefix"]; exists {
487+
if parsedValue, valid := jsonValue.(string); valid {
488+
obj.IdPrefix = &parsedValue
489+
}
490+
491+
}
492+
476493
if jsonValue, exists := json["MaxImageResolution"]; exists {
477494
if parsedValue, valid := jsonValue.(float64); valid {
478495
obj.MaxImageResolution = new(int32)
@@ -730,6 +747,14 @@ func (obj *SvgSaveOptionsData) SetFitToViewPort(value *bool) {
730747
obj.FitToViewPort = value
731748
}
732749

750+
func (obj *SvgSaveOptionsData) GetIdPrefix() *string {
751+
return obj.IdPrefix
752+
}
753+
754+
func (obj *SvgSaveOptionsData) SetIdPrefix(value *string) {
755+
obj.IdPrefix = value
756+
}
757+
733758
func (obj *SvgSaveOptionsData) GetMaxImageResolution() *int32 {
734759
return obj.MaxImageResolution
735760
}

v2502/.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Launch",
9+
"type": "go",
10+
"request": "launch",
11+
"mode": "auto",
12+
"program": "${fileDirname}",
13+
"env": {},
14+
"args": []
15+
}
16+
]
17+
}

v2502/LICENSE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2020 Aspose
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)