Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions english/cpp/aspose.cells.rendering/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ url: /cpp/aspose.cells.rendering/
| [ColorDepth](./colordepth/) | Enumerates Bit Depth Type for tiff image. |
| [CommentTitleType](./commenttitletype/) | Represents comment title type while rendering when comment is set to display at end of sheet. |
| [DrawObjectEnum](./drawobjectenum/) | Indicate [Cell](../aspose.cells/cell/) or Image of [DrawObject](./drawobject/). |
| [HtmlEmbeddedFontType](./htmlembeddedfonttype/) | Represents the embedded font type in html. |
| [ImageBinarizationMethod](./imagebinarizationmethod/) | Specifies the method used to binarize image. |
| [PdfCompliance](./pdfcompliance/) | Allowing user to set PDF conversion's Compatibility. |
| [PdfCompressionCore](./pdfcompressioncore/) | Specifies a type of compression applied to all content in the PDF file except images. |
Expand Down
29 changes: 29 additions & 0 deletions english/cpp/aspose.cells.rendering/htmlembeddedfonttype/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: Aspose::Cells::Rendering::HtmlEmbeddedFontType enum
linktitle: HtmlEmbeddedFontType
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::Rendering::HtmlEmbeddedFontType enum. Represents the embedded font type in html in C++.'
type: docs
weight: 2100
url: /cpp/aspose.cells.rendering/htmlembeddedfonttype/
---
## HtmlEmbeddedFontType enum


Represents the embedded font type in html.

```cpp
enum class HtmlEmbeddedFontType
```

### Values

| Name | Value | Description |
| --- | --- | --- |
| None | 0 | <br>Not embed font. |
| Woff | 1 | <br>Embed WOFF font. |

## See Also

* Namespace [Aspose::Cells::Rendering](../)
* Library [Aspose.Cells for C++](../../)
1 change: 1 addition & 0 deletions english/cpp/aspose.cells.saving/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ url: /cpp/aspose.cells.saving/

| Enum | Description |
| --- | --- |
| [SaveElementType](./saveelementtype/) | Represents what kind of elements should be saved. |
| [SqlScriptOperatorType](./sqlscriptoperatortype/) | Represents the type of operating data. |
2 changes: 2 additions & 0 deletions english/cpp/aspose.cells.saving/ebooksaveoptions/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class EbookSaveOptions : public Aspose::Cells::HtmlSaveOptions
| [GetDefaultFontName()](../../aspose.cells/htmlsaveoptions/getdefaultfontname/) | Specify the default font name for exporting html, the default font will be used when the font of style is not existing, If this property is null, [Aspose.Cells](../../aspose.cells/) will use universal font which have the same family with the original font, the default value is null. |
| [GetDisableCss()](../../aspose.cells/htmlsaveoptions/getdisablecss/) | Indicates whether only inline styles are applied, without relying on CSS. The default value is false. |
| [GetDisableDownlevelRevealedComments()](../../aspose.cells/htmlsaveoptions/getdisabledownlevelrevealedcomments/) | Indicates if disable Downlevel-revealed conditional comments when exporting file to html, the default value is false. |
| [GetEmbeddedFontType()](../../aspose.cells/htmlsaveoptions/getembeddedfonttype/) | Gets or sets the type of font that embedded in html. Default value is HtmlEmbeddedFontType.None which indicates that it will not embed font in html. |
| [GetEnableCssCustomProperties()](../../aspose.cells/htmlsaveoptions/getenablecsscustomproperties/) | 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. |
| [GetEncodeEntityAsCode()](../../aspose.cells/htmlsaveoptions/getencodeentityascode/) | Indicates whether the html character entities are replaced with decimal code. (e.g. "&amp;nbsp;" is replaced with "&amp;#160;"). The default value is false. |
| [GetEncoding()](../../aspose.cells/htmlsaveoptions/getencoding/) | If not set,use Encoding.UTF8 as default enconding type. |
Expand Down Expand Up @@ -139,6 +140,7 @@ class EbookSaveOptions : public Aspose::Cells::HtmlSaveOptions
| [SetDefaultFontName(const char16_t* value)](../../aspose.cells/htmlsaveoptions/setdefaultfontname/) | Specify the default font name for exporting html, the default font will be used when the font of style is not existing, If this property is null, [Aspose.Cells](../../aspose.cells/) will use universal font which have the same family with the original font, the default value is null. |
| [SetDisableCss(bool value)](../../aspose.cells/htmlsaveoptions/setdisablecss/) | Indicates whether only inline styles are applied, without relying on CSS. The default value is false. |
| [SetDisableDownlevelRevealedComments(bool value)](../../aspose.cells/htmlsaveoptions/setdisabledownlevelrevealedcomments/) | Indicates if disable Downlevel-revealed conditional comments when exporting file to html, the default value is false. |
| [SetEmbeddedFontType(HtmlEmbeddedFontType value)](../../aspose.cells/htmlsaveoptions/setembeddedfonttype/) | Gets or sets the type of font that embedded in html. Default value is HtmlEmbeddedFontType.None which indicates that it will not embed font in html. |
| [SetEnableCssCustomProperties(bool value)](../../aspose.cells/htmlsaveoptions/setenablecsscustomproperties/) | 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. |
| [SetEncodeEntityAsCode(bool value)](../../aspose.cells/htmlsaveoptions/setencodeentityascode/) | Indicates whether the html character entities are replaced with decimal code. (e.g. "&amp;nbsp;" is replaced with "&amp;#160;"). The default value is false. |
| [SetEncoding(EncodingType value)](../../aspose.cells/htmlsaveoptions/setencoding/) | If not set,use Encoding.UTF8 as default enconding type. |
Expand Down
29 changes: 29 additions & 0 deletions english/cpp/aspose.cells.saving/saveelementtype/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: Aspose::Cells::Saving::SaveElementType enum
linktitle: SaveElementType
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::Saving::SaveElementType enum. Represents what kind of elements should be saved in C++.'
type: docs
weight: 500
url: /cpp/aspose.cells.saving/saveelementtype/
---
## SaveElementType enum


Represents what kind of elements should be saved.

```cpp
enum class SaveElementType
```

### Values

| Name | Value | Description |
| --- | --- | --- |
| All | 251658239 | <br>All data. |
| Chart | 256 | <br>Only charts. |

## See Also

* Namespace [Aspose::Cells::Saving](../)
* Library [Aspose.Cells for C++](../../)
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ bool Aspose::Cells::CopyOptions::GetReferToDestinationSheet()
## Remarks


The default value is false, it works as MS Excel.
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"
## See Also
* Class [Vector](../../vector/)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ void Aspose::Cells::CopyOptions::SetReferToDestinationSheet(bool value)
## Remarks
The default value is false, it works as MS Excel.
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"
## See Also
* Class [Vector](../../vector/)
Expand Down
2 changes: 1 addition & 1 deletion english/cpp/aspose.cells/docxsaveoptions/_impl/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ linktitle: _impl
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::DocxSaveOptions::_impl field. The implementation object in C++.'
type: docs
weight: 1000
weight: 1800
url: /cpp/aspose.cells/docxsaveoptions/_impl/
---
## _impl field
Expand Down
6 changes: 6 additions & 0 deletions english/cpp/aspose.cells/docxsaveoptions/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class DocxSaveOptions : public Aspose::Cells::PaginatedSaveOptions
| [DocxSaveOptions(const DocxSaveOptions\& src)](./docxsaveoptions/) | Copy constructor. |
| [DocxSaveOptions(const PaginatedSaveOptions\& src)](./docxsaveoptions/) | Constructs from a parent object. |
| [GetAllColumnsInOnePagePerSheet()](../paginatedsaveoptions/getallcolumnsinonepagepersheet/) | If AllColumnsInOnePagePerSheet is true , all column content of one sheet will output to only one page in result. The width of paper size of pagesetup will be ignored, and the other settings of pagesetup will still take effect. |
| [GetAsFlatOpc()](./getasflatopc/) | Indicates whether saving as a flat opc file which can be generated by Open XML SDK. |
| [GetAsNormalView()](./getasnormalview/) | 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. |
| [GetCachedFileFolder()](../saveoptions/getcachedfilefolder/) | The folder for temporary files that may be used as data cache. |
| [GetCheckExcelRestriction()](../saveoptions/getcheckexcelrestriction/) | Whether check restriction of excel file when user modify cells related objects. For example, excel does not allow inputting string value longer than 32K. When you input a value longer than 32K, it will be truncated. |
Expand All @@ -37,6 +38,7 @@ class DocxSaveOptions : public Aspose::Cells::PaginatedSaveOptions
| [GetDefaultEditLanguage()](../paginatedsaveoptions/getdefaulteditlanguage/) | Gets or sets default edit language. |
| [GetDefaultFont()](../paginatedsaveoptions/getdefaultfont/) | When characters in the Excel are Unicode and not be set with correct font in cell style, They may appear as block in pdf,image. Set the DefaultFont such as MingLiu or MS Gothic to show these characters. If this property is not set, [Aspose.Cells](../) will use system default font to show these unicode characters. |
| [GetDrawObjectEventHandler()](../paginatedsaveoptions/getdrawobjecteventhandler/) | Implements this interface to get DrawObject and Bound when rendering. |
| [GetEmbedXlsxAsChartDataSource()](./getembedxlsxaschartdatasource/) | Indicates whether embedding an xlsx file as data source of the chart. |
| [GetEmfRenderSetting()](../paginatedsaveoptions/getemfrendersetting/) | Setting for rendering Emf metafile. |
| [GetEncryptDocumentProperties()](../saveoptions/getencryptdocumentproperties/) | Indicates whether encrypt document properties when saving as .xls file. The default value is true. |
| [GetGridlineColor()](../paginatedsaveoptions/getgridlinecolor/) | Gets or sets gridline color. |
Expand All @@ -52,6 +54,7 @@ class DocxSaveOptions : public Aspose::Cells::PaginatedSaveOptions
| [GetRefreshChartCache()](../saveoptions/getrefreshchartcache/) | Indicates whether refreshing chart cache data. |
| [GetSaveAsEditableShapes()](./getsaveaseditableshapes/) | Save all drawing objects as editable shapes in the word file, so you can edit them in Word. |
| [GetSaveAsEditableShaps()](./getsaveaseditableshaps/) | **(Deprecated)** Save all drawing objecgts as editable shapes in word file.So you can edit them in Word. |
| [GetSaveElementType()](./getsaveelementtype/) | Indicates which elements should be saved. |
| [GetSaveFormat()](../saveoptions/getsaveformat/) | Gets the save file format. |
| [GetSheetSet()](../paginatedsaveoptions/getsheetset/) | Gets or sets the sheets to render. Default is all visible sheets in the workbook: Aspose.Cells.Rendering.SheetSet.Visible. |
| [GetSortExternalNames()](../saveoptions/getsortexternalnames/) | Indicates whether sorting external defined names before saving file. |
Expand All @@ -72,6 +75,7 @@ class DocxSaveOptions : public Aspose::Cells::PaginatedSaveOptions
| [SaveOptions(SaveOptions_Impl* impl)](../saveoptions/saveoptions/) | Constructs from an implementation object. |
| [SaveOptions(const SaveOptions\& src)](../saveoptions/saveoptions/) | Copy constructor. |
| [SetAllColumnsInOnePagePerSheet(bool value)](../paginatedsaveoptions/setallcolumnsinonepagepersheet/) | If AllColumnsInOnePagePerSheet is true , all column content of one sheet will output to only one page in result. The width of paper size of pagesetup will be ignored, and the other settings of pagesetup will still take effect. |
| [SetAsFlatOpc(bool value)](./setasflatopc/) | Indicates whether saving as a flat opc file which can be generated by Open XML SDK. |
| [SetAsNormalView(bool value)](./setasnormalview/) | 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. |
| [SetCachedFileFolder(const U16String\& value)](../saveoptions/setcachedfilefolder/) | The folder for temporary files that may be used as data cache. |
| [SetCachedFileFolder(const char16_t* value)](../saveoptions/setcachedfilefolder/) | The folder for temporary files that may be used as data cache. |
Expand All @@ -85,6 +89,7 @@ class DocxSaveOptions : public Aspose::Cells::PaginatedSaveOptions
| [SetDefaultFont(const U16String\& value)](../paginatedsaveoptions/setdefaultfont/) | When characters in the Excel are Unicode and not be set with correct font in cell style, They may appear as block in pdf,image. Set the DefaultFont such as MingLiu or MS Gothic to show these characters. If this property is not set, [Aspose.Cells](../) will use system default font to show these unicode characters. |
| [SetDefaultFont(const char16_t* value)](../paginatedsaveoptions/setdefaultfont/) | When characters in the Excel are Unicode and not be set with correct font in cell style, They may appear as block in pdf,image. Set the DefaultFont such as MingLiu or MS Gothic to show these characters. If this property is not set, [Aspose.Cells](../) will use system default font to show these unicode characters. |
| [SetDrawObjectEventHandler(DrawObjectEventHandler* value)](../paginatedsaveoptions/setdrawobjecteventhandler/) | Implements this interface to get DrawObject and Bound when rendering. |
| [SetEmbedXlsxAsChartDataSource(bool value)](./setembedxlsxaschartdatasource/) | Indicates whether embedding an xlsx file as data source of the chart. |
| [SetEmfRenderSetting(EmfRenderSetting value)](../paginatedsaveoptions/setemfrendersetting/) | Setting for rendering Emf metafile. |
| [SetEncryptDocumentProperties(bool value)](../saveoptions/setencryptdocumentproperties/) | Indicates whether encrypt document properties when saving as .xls file. The default value is true. |
| [SetGridlineColor(const Aspose::Cells::Color\& value)](../paginatedsaveoptions/setgridlinecolor/) | Gets or sets gridline color. |
Expand All @@ -101,6 +106,7 @@ class DocxSaveOptions : public Aspose::Cells::PaginatedSaveOptions
| [SetRefreshChartCache(bool value)](../saveoptions/setrefreshchartcache/) | Indicates whether refreshing chart cache data. |
| [SetSaveAsEditableShapes(bool value)](./setsaveaseditableshapes/) | Save all drawing objects as editable shapes in the word file, so you can edit them in Word. |
| [SetSaveAsEditableShaps(bool value)](./setsaveaseditableshaps/) | **(Deprecated)** Save all drawing objecgts as editable shapes in word file.So you can edit them in Word. |
| [SetSaveElementType(SaveElementType value)](./setsaveelementtype/) | Indicates which elements should be saved. |
| [SetSheetSet(const SheetSet\& value)](../paginatedsaveoptions/setsheetset/) | Gets or sets the sheets to render. Default is all visible sheets in the workbook: Aspose.Cells.Rendering.SheetSet.Visible. |
| [SetSortExternalNames(bool value)](../saveoptions/setsortexternalnames/) | Indicates whether sorting external defined names before saving file. |
| [SetSortNames(bool value)](../saveoptions/setsortnames/) | Indicates whether sorting defined names before saving file. |
Expand Down
24 changes: 24 additions & 0 deletions english/cpp/aspose.cells/docxsaveoptions/getasflatopc/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Aspose::Cells::DocxSaveOptions::GetAsFlatOpc method
linktitle: GetAsFlatOpc
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::DocxSaveOptions::GetAsFlatOpc method. Indicates whether saving as a flat opc file which can be generated by Open XML SDK in C++.'
type: docs
weight: 1200
url: /cpp/aspose.cells/docxsaveoptions/getasflatopc/
---
## DocxSaveOptions::GetAsFlatOpc method


Indicates whether saving as a flat opc file which can be generated by Open XML SDK.

```cpp
bool Aspose::Cells::DocxSaveOptions::GetAsFlatOpc()
```

## See Also

* Class [Vector](../../vector/)
* Class [DocxSaveOptions](../)
* Namespace [Aspose::Cells](../../)
* Library [Aspose.Cells for C++](../../../)
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ linktitle: GetAsNormalView
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::DocxSaveOptions::GetAsNormalView method. 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 in C++.'
type: docs
weight: 1000
weight: 1600
url: /cpp/aspose.cells/docxsaveoptions/getasnormalview/
---
## DocxSaveOptions::GetAsNormalView method
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: Aspose::Cells::DocxSaveOptions::GetEmbedXlsxAsChartDataSource method
linktitle: GetEmbedXlsxAsChartDataSource
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::DocxSaveOptions::GetEmbedXlsxAsChartDataSource method. Indicates whether embedding an xlsx file as data source of the chart in C++.'
type: docs
weight: 1000
url: /cpp/aspose.cells/docxsaveoptions/getembedxlsxaschartdatasource/
---
## DocxSaveOptions::GetEmbedXlsxAsChartDataSource method


Indicates whether embedding an xlsx file as data source of the chart.

```cpp
bool Aspose::Cells::DocxSaveOptions::GetEmbedXlsxAsChartDataSource()
```

## Remarks


The default value is true.
## See Also

* Class [Vector](../../vector/)
* Class [DocxSaveOptions](../)
* Namespace [Aspose::Cells](../../)
* Library [Aspose.Cells for C++](../../../)
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Aspose::Cells::DocxSaveOptions::GetSaveElementType method
linktitle: GetSaveElementType
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::DocxSaveOptions::GetSaveElementType method. Indicates which elements should be saved in C++.'
type: docs
weight: 1400
url: /cpp/aspose.cells/docxsaveoptions/getsaveelementtype/
---
## DocxSaveOptions::GetSaveElementType method


Indicates which elements should be saved.

```cpp
SaveElementType Aspose::Cells::DocxSaveOptions::GetSaveElementType()
```

## See Also

* Enum [SaveElementType](../../../aspose.cells.saving/saveelementtype/)
* Class [DocxSaveOptions](../)
* Namespace [Aspose::Cells](../../)
* Library [Aspose.Cells for C++](../../../)
24 changes: 24 additions & 0 deletions english/cpp/aspose.cells/docxsaveoptions/setasflatopc/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Aspose::Cells::DocxSaveOptions::SetAsFlatOpc method
linktitle: SetAsFlatOpc
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::DocxSaveOptions::SetAsFlatOpc method. Indicates whether saving as a flat opc file which can be generated by Open XML SDK in C++.'
type: docs
weight: 1300
url: /cpp/aspose.cells/docxsaveoptions/setasflatopc/
---
## DocxSaveOptions::SetAsFlatOpc method


Indicates whether saving as a flat opc file which can be generated by Open XML SDK.

```cpp
void Aspose::Cells::DocxSaveOptions::SetAsFlatOpc(bool value)
```
## See Also
* Class [Vector](../../vector/)
* Class [DocxSaveOptions](../)
* Namespace [Aspose::Cells](../../)
* Library [Aspose.Cells for C++](../../../)
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ linktitle: SetAsNormalView
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::DocxSaveOptions::SetAsNormalView method. 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 in C++.'
type: docs
weight: 1100
weight: 1700
url: /cpp/aspose.cells/docxsaveoptions/setasnormalview/
---
## DocxSaveOptions::SetAsNormalView method
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: Aspose::Cells::DocxSaveOptions::SetEmbedXlsxAsChartDataSource method
linktitle: SetEmbedXlsxAsChartDataSource
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::DocxSaveOptions::SetEmbedXlsxAsChartDataSource method. Indicates whether embedding an xlsx file as data source of the chart in C++.'
type: docs
weight: 1100
url: /cpp/aspose.cells/docxsaveoptions/setembedxlsxaschartdatasource/
---
## DocxSaveOptions::SetEmbedXlsxAsChartDataSource method


Indicates whether embedding an xlsx file as data source of the chart.

```cpp
void Aspose::Cells::DocxSaveOptions::SetEmbedXlsxAsChartDataSource(bool value)
```

## Remarks


The default value is true.
## See Also

* Class [Vector](../../vector/)
* Class [DocxSaveOptions](../)
* Namespace [Aspose::Cells](../../)
* Library [Aspose.Cells for C++](../../../)
Loading