You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default value is false, it works as MS Excel. For example: if copying a chart with the data source "sheet1!A1:B10" from worksheet "sheet1 to other worksheet "sheet2", The data source will be changed as "sheet2!A1:B10"
Copy file name to clipboardExpand all lines: english/javascript-cpp/docxsaveoptions/_index.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,9 @@ class DocxSaveOptions extends PaginatedSaveOptions;
29
29
| --- | --- | --- |
30
30
|[saveAsEditableShaps](#saveAsEditableShaps--)| boolean | Save all drawing objecgts as editable shapes in word file.So you can edit them in Word. |
31
31
|[saveAsEditableShapes](#saveAsEditableShapes--)| boolean | Save all drawing objects as editable shapes in the word file, so you can edit them in Word. |
32
+
|[embedXlsxAsChartDataSource](#embedXlsxAsChartDataSource--)| boolean | Indicates whether embedding an xlsx file as data source of the chart. |
33
+
|[asFlatOpc](#asFlatOpc--)| boolean | Indicates whether saving as a flat opc file which can be generated by Open XML SDK |
34
+
|[saveElementType](#saveElementType--)| SaveElementType | Indicates which elements should be saved. |
32
35
|[asNormalView](#asNormalView--)| boolean | Exporting Excel file to docx fiel as normal view. If this property is true , one Area will be output, and no scale will take effect. The default value is false. |
33
36
|[saveFormat](#saveFormat--)| SaveFormat | Readonly. Gets the save file format. |
34
37
|[clearData](#clearData--)| boolean | Make the workbook empty after saving the file. |
Indicates whether embedding an xlsx file as data source of the chart.
135
+
136
+
```javascript
137
+
embedXlsxAsChartDataSource : boolean;
138
+
```
139
+
140
+
141
+
**Remarks**
142
+
143
+
The default value is true.
144
+
145
+
### asFlatOpc {#asFlatOpc--}
146
+
147
+
Indicates whether saving as a flat opc file which can be generated by Open XMLSDK
148
+
149
+
```javascript
150
+
asFlatOpc : boolean;
151
+
```
152
+
153
+
154
+
### saveElementType {#saveElementType--}
155
+
156
+
Indicates which elements should be saved.
157
+
158
+
```javascript
159
+
saveElementType : SaveElementType;
160
+
```
161
+
162
+
129
163
### asNormalView {#asNormalView--}
130
164
131
165
Exporting Excel file to docx fiel as normal view. Ifthis property is true , one Area will be output, and no scale will take effect. The default value is false.
Copy file name to clipboardExpand all lines: english/javascript-cpp/ebooksaveoptions/_index.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,6 +107,7 @@ class EbookSaveOptions extends HtmlSaveOptions;
107
107
|[enableCssCustomProperties](#enableCssCustomProperties--)| boolean | Optimize the output of html by using CSS custom properties. For example, for the scenario that there are multiple occurences for one base64 image, with custom property the image data only needs to be saved once so the performance of the resultant html can be improved. The default value is false. |
108
108
|[htmlVersion](#htmlVersion--)| HtmlVersion | Specifies version of HTML standard that should be used when saving the HTML format. Default value is HtmlVersion.Default. |
109
109
|[sheetSet](#sheetSet--)| SheetSet | Gets or sets the sheets to render. Default is all visible sheets in the workbook: [Aspose.Cells.Rendering.SheetSet.Visible](../aspose.cells.rendering.sheetset.visible/). |
110
+
|[embeddedFontType](#embeddedFontType--)| HtmlEmbeddedFontType | Gets or sets the type of font that embedded in html. Default value is [HtmlEmbeddedFontType.None](../htmlembeddedfonttype.none/) which indicates that it will not embed font in html. |
110
111
111
112
112
113
### constructor() {#constructor--}
@@ -920,4 +921,13 @@ sheetSet : SheetSet;
920
921
```
921
922
922
923
924
+
### embeddedFontType {#embeddedFontType--}
925
+
926
+
Gets or sets the type of font that embedded inhtml. Default value is [HtmlEmbeddedFontType.None](../htmlembeddedfonttype.none/) which indicates that it will not embed font in html.
Copy file name to clipboardExpand all lines: english/javascript-cpp/htmlsaveoptions/_index.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,7 @@ class HtmlSaveOptions extends SaveOptions;
94
94
|[enableCssCustomProperties](#enableCssCustomProperties--)| boolean | Optimize the output of html by using CSS custom properties. For example, for the scenario that there are multiple occurences for one base64 image, with custom property the image data only needs to be saved once so the performance of the resultant html can be improved. The default value is false. |
95
95
|[htmlVersion](#htmlVersion--)| HtmlVersion | Specifies version of HTML standard that should be used when saving the HTML format. Default value is HtmlVersion.Default. |
96
96
|[sheetSet](#sheetSet--)| SheetSet | Gets or sets the sheets to render. Default is all visible sheets in the workbook: [Aspose.Cells.Rendering.SheetSet.Visible](../aspose.cells.rendering.sheetset.visible/). |
97
+
|[embeddedFontType](#embeddedFontType--)| HtmlEmbeddedFontType | Gets or sets the type of font that embedded in html. Default value is [HtmlEmbeddedFontType.None](../htmlembeddedfonttype.none/) which indicates that it will not embed font in html. |
97
98
|[saveFormat](#saveFormat--)| SaveFormat | Readonly. Gets the save file format. |
98
99
|[clearData](#clearData--)| boolean | Make the workbook empty after saving the file. |
99
100
|[cachedFileFolder](#cachedFileFolder--)| string | The folder for temporary files that may be used as data cache. |
@@ -779,6 +780,15 @@ sheetSet : SheetSet;
779
780
```
780
781
781
782
783
+
### embeddedFontType {#embeddedFontType--}
784
+
785
+
Gets or sets the type of font that embedded inhtml. Default value is [HtmlEmbeddedFontType.None](../htmlembeddedfonttype.none/) which indicates that it will not embed font in html.
Copy file name to clipboardExpand all lines: english/javascript-cpp/markdownsaveoptions/_index.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,8 @@ class MarkdownSaveOptions extends SaveOptions;
35
35
|[imageOptions](#imageOptions--)| ImageOrPrintOptions | Readonly. Get the ImageOrPrintOptions object before exporting |
36
36
|[exportImagesAsBase64](#exportImagesAsBase64--)| boolean | Specifies whether images are saved in Base64 format to Markdown. The default value is true. |
37
37
|[calculateFormula](#calculateFormula--)| boolean | Indicates whether to calculate formulas before saving markdown file. |
38
+
|[exportHyperlinkAsReference](#exportHyperlinkAsReference--)| boolean | Exports hyperlink using reference definitions instead of inline format. The default value is false. |
39
+
|[alignColumnPadding](#alignColumnPadding--)| string | Indicates whether column alignment is enabled for generated Markdown tables. When enabled, columns are aligned by padding cell content with the specified character(typically ' ' for spaces). Set to '\0' to disable column alignment (default). |
38
40
|[saveFormat](#saveFormat--)| SaveFormat | Readonly. Gets the save file format. |
39
41
|[clearData](#clearData--)| boolean | Make the workbook empty after saving the file. |
40
42
|[cachedFileFolder](#cachedFileFolder--)| string | The folder for temporary files that may be used as data cache. |
Exports hyperlink using reference definitions instead of inline format. The default value is false.
173
+
174
+
```javascript
175
+
exportHyperlinkAsReference : boolean;
176
+
```
177
+
178
+
179
+
### alignColumnPadding {#alignColumnPadding--}
180
+
181
+
Indicates whether column alignment is enabled for generated Markdown tables. When enabled, columns are aligned by padding cell content with the specified character(typically ''for spaces). Set to '\0' to disable column alignment (default).
Copy file name to clipboardExpand all lines: english/javascript-cpp/ooxmlsaveoptions/_index.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,7 @@ class OoxmlSaveOptions extends SaveOptions;
27
27
28
28
| Property | Type | Description |
29
29
| --- | --- | --- |
30
+
|[asFlatOpc](#asFlatOpc--)| boolean | Indicates whether saving as a flat opc file which can be generated by Open XML SDK. |
30
31
|[exportCellName](#exportCellName--)| boolean | Indicates if export cell name to Excel2007 .xlsx (.xlsm, .xltx, .xltm) file. If the output file may be accessed by SQL Server DTS, this value must be true. Setting the value to false will highly increase the performance and reduce the file size when creating large file. Default value is true. |
31
32
|[lightCellsDataProvider](#lightCellsDataProvider--)| LightCellsDataProvider | The data provider for saving workbook in light mode. |
32
33
|[updateZoom](#updateZoom--)| boolean | Indicates whether update scaling factor before saving the file if the PageSetup.FitToPagesWide and PageSetup.FitToPagesTall properties control how the worksheet is scaled. |
| saveFormat | [SaveFormat](../saveformat/) | The file format. /// It should be one of following types: [SaveFormat.Xlsx](../saveformat.xlsx/), [SaveFormat.Xltx](../saveformat.xltx/), /// [SaveFormat.Xlam](../saveformat.xlam/), [SaveFormat.Xlsm](../saveformat.xlsm/) or [SaveFormat.Xltm](../saveformat.xltm/), /// otherwise the saved format will be set as [SaveFormat.Xlsx](../saveformat.xlsx/) automatically. |
86
87
88
+
### asFlatOpc {#asFlatOpc--}
89
+
90
+
Indicates whether saving as a flat opc file which can be generated by Open XMLSDK.
Copy file name to clipboardExpand all lines: english/javascript-cpp/pptxsaveoptions/_index.md
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,8 +28,11 @@ class PptxSaveOptions extends PaginatedSaveOptions;
28
28
| Property | Type | Description |
29
29
| --- | --- | --- |
30
30
|[ignoreHiddenRows](#ignoreHiddenRows--)| boolean | Inidicates whether ignoring hidden rows when converting Excel to PowerPoint. |
31
+
|[saveAsEditableShapes](#saveAsEditableShapes--)| boolean | Save all drawing objects as editable shapes in the pptx file, so you can edit them in PowerPoint. |
32
+
|[embedXlsxAsChartDataSource](#embedXlsxAsChartDataSource--)| boolean | Indicates whether embedding an xlsx file as data source of the chart. |
31
33
|[adjustFontSizeForRowType](#adjustFontSizeForRowType--)| AdjustFontSizeForRowType | Represents what type of line needs to be adjusted size of font if height of row is small. |
32
34
|[exportViewType](#exportViewType--)| SlideViewType | Gets and sets the display type when exporting to PowerPoint. The default exporting type is working as printing. |
35
+
|[asFlatOpc](#asFlatOpc--)| boolean | Indicates whether saving as a flat opc file which can be generated by Open XML SDK |
33
36
|[saveFormat](#saveFormat--)| SaveFormat | Readonly. Gets the save file format. |
34
37
|[clearData](#clearData--)| boolean | Make the workbook empty after saving the file. |
35
38
|[cachedFileFolder](#cachedFileFolder--)| string | The folder for temporary files that may be used as data cache. |
0 commit comments