Skip to content

Commit 78adf4e

Browse files
Aspose.Slides for C++ 25.10 API Reference
1 parent 68c6038 commit 78adf4e

File tree

704 files changed

+796
-735
lines changed

Some content is hidden

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

704 files changed

+796
-735
lines changed

content/net/english/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ is_root: true
1818
| [Aspose.Slides.Charts](./aspose.slides.charts) | Contains classes for work with charts in Microsoft PowerPoint presentations. |
1919
| [Aspose.Slides.DOM.Ole](./aspose.slides.dom.ole) | Contains classes for work with OLE objects in Microsoft PowerPoint presentations. |
2020
| [Aspose.Slides.Effects](./aspose.slides.effects) | Contains classes for work with various effects in Microsoft PowerPoint presentations. |
21-
| [Aspose.Slides.Excel](./aspose.slides.excel) | |
21+
| [Aspose.Slides.Excel](./aspose.slides.excel) | Contains classes for work with external Microsoft Excel spreadsheets. |
2222
| [Aspose.Slides.Export](./aspose.slides.export) | Contains classes for exporting Microsoft PowerPoint presentations to different formats like Html, Pdf, Svg, Xps and others. |
2323
| [Aspose.Slides.Export.Web](./aspose.slides.export.web) | Contains classes for exporting Microsoft PowerPoint presentations to Html with extension projects. |
2424
| [Aspose.Slides.Export.Xaml](./aspose.slides.export.xaml) | Contains classes for exporting Microsoft PowerPoint presentations to XAML. |

content/net/english/aspose.slides.excel/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: Aspose.Slides.Excel
33
second_title: Aspose.Sildes for .NET API Reference
4-
description:
4+
description: Contains classes for work with external Microsoft Excel spreadsheets.
55
type: docs
66
weight: 70
77
url: /aspose.slides.excel/
88
---
99

10-
10+
Contains classes for work with external Microsoft Excel spreadsheets.
1111

1212
## Classes
1313

content/net/english/aspose.slides.excel/exceldataworkbook/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class ExcelDataWorkbook : IExcelDataWorkbook
3030
| [GetCell](../../aspose.slides.excel/exceldataworkbook/getcell#getcell_3)(stringstring) | Retrieves a cell from the specified worksheet using Excel-style cell name (e.g., "B2"). |
3131
| [GetCell](../../aspose.slides.excel/exceldataworkbook/getcell#getcell)(intintint) | Retrieves a cell from the specified worksheet using its index and cell coordinates. |
3232
| [GetCell](../../aspose.slides.excel/exceldataworkbook/getcell#getcell_2)(stringintint) | Retrieves a cell from the specified worksheet using its name and cell coordinates. |
33-
| [GetCells](../../aspose.slides.excel/exceldataworkbook/getcells)(stringbool) | |
33+
| [GetCells](../../aspose.slides.excel/exceldataworkbook/getcells)(stringbool) | Retrieves a collection of cells from the workbook that match the specified formula. |
3434
| [GetChartsFromWorksheet](../../aspose.slides.excel/exceldataworkbook/getchartsfromworksheet)(string) | Retrieves a dictionary containing the indexes and names of all charts in the specified worksheet of an Excel workbook. |
3535
| [GetWorksheetNames](../../aspose.slides.excel/exceldataworkbook/getworksheetnames)() | Retrieves the names of all worksheets contained in the Excel workbook. |
3636

content/net/english/aspose.slides.excel/exceldataworkbook/getcells/_index.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,40 @@
11
---
22
title: GetCells
33
second_title: Aspose.Sildes for .NET API Reference
4-
description:
4+
description: Retrieves a collection of cells from the workbook that match the specified formula.
55
type: docs
66
weight: 30
77
url: /aspose.slides.excel/exceldataworkbook/getcells/
88
---
99

1010
## ExcelDataWorkbook.GetCells method
1111

12+
Retrieves a collection of cells from the workbook that match the specified formula.
13+
1214
```csharp
1315
public ReadOnlyCollection<IExcelDataCell> GetCells(string formula, bool skipHiddenCells)
1416
```
1517

18+
| Parameter | Type | Description |
19+
| --- | --- | --- |
20+
| formula | String | A formula or range expression (e.g., "Sheet1!A1:B3") used to identify target cells. |
21+
| skipHiddenCells | Boolean | If `true`, hidden cells (e.g., in hidden rows or columns) will be excluded from the result. |
22+
23+
### Return Value
24+
25+
A read-only list of cells that match the specified formula.
26+
27+
### Examples
28+
29+
Example:
30+
31+
```csharp
32+
[C#]
33+
ExcelDataWorkbook wb = new ExcelDataWorkbook(testFile);
34+
IReadOnlyList<IExcelDataCell> cells = wb.GetCells("Sheet1!A2:A6", false);
35+
Console.WriteLine(cells.Count); //Output: 5
36+
```
37+
1638
### See Also
1739

1840
* interface [IExcelDataCell](../../iexceldatacell)

content/net/english/aspose.slides.export.web/output/_index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ public sealed class Output
1919

2020
| Name | Description |
2121
| --- | --- |
22-
| [Add](../../aspose.slides.export.web/output/add#add_1)(string, IImage) | Adds an output element for the image. |
23-
| [Add](../../aspose.slides.export.web/output/add#add_2)(string, IPPImage) | Adds an output element for the image. |
24-
| [Add](../../aspose.slides.export.web/output/add#add_3)(string, IVideo) | Adds an output element for the video. |
25-
| [Add](../../aspose.slides.export.web/output/add#add_5)(string, string) | Adds an output element for the text content. |
26-
| [Add](../../aspose.slides.export.web/output/add#add)(string, IFontData, FontStyle) | Adds an output element for the font. |
27-
| [Add&lt;TContextObject&gt;](../../aspose.slides.export.web/output/add#add_6)(stringstringTContextObject) | Adds an output element for the context object. |
22+
| [Add](../../aspose.slides.export.web/output/add#add_2)(string, IImage) | Adds an output element for the image. |
23+
| [Add](../../aspose.slides.export.web/output/add#add_3)(string, IPPImage) | Adds an output element for the image. |
24+
| [Add](../../aspose.slides.export.web/output/add#add_4)(string, IVideo) | Adds an output element for the video. |
25+
| [Add](../../aspose.slides.export.web/output/add#add_6)(string, string) | Adds an output element for the text content. |
26+
| [Add](../../aspose.slides.export.web/output/add#add)(string, IFontData, FontStyleType) | Creates and adds an output file element for the specified font. |
27+
| [Add&lt;TContextObject&gt;](../../aspose.slides.export.web/output/add#add_7)(stringstringTContextObject) | Adds an output element for the context object. |
2828
| [BindResource](../../aspose.slides.export.web/output/bindresource)(IOutputFileobject) | Binds resource to output file. |
2929
| [GetResourcePath](../../aspose.slides.export.web/output/getresourcepath)(object) | Returns the path for a given resource. |
3030

content/net/english/aspose.slides.export.web/output/add/_index.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ weight: 10
77
url: /aspose.slides.export.web/output/add/
88
---
99

10-
## Add&lt;TContextObject&gt;(string, string, TContextObject) {#add_6}
10+
## Add&lt;TContextObject&gt;(string, string, TContextObject) {#add_7}
1111

1212
Adds an output element for the context object.
1313

@@ -35,7 +35,7 @@ public IOutputFile Add<TContextObject>(string path, string templateKey,
3535

3636
---
3737

38-
## Add(string, IPPImage) {#add_2}
38+
## Add(string, IPPImage) {#add_3}
3939

4040
Adds an output element for the image.
4141

@@ -62,7 +62,7 @@ public IOutputFile Add(string path, IPPImage image)
6262

6363
---
6464

65-
## Add(string, IImage) {#add_1}
65+
## Add(string, IImage) {#add_2}
6666

6767
Adds an output element for the image.
6868

@@ -89,7 +89,7 @@ public IOutputFile Add(string path, IImage image)
8989

9090
---
9191

92-
## Add(string, IVideo) {#add_3}
92+
## Add(string, IVideo) {#add_4}
9393

9494
Adds an output element for the video.
9595

@@ -116,35 +116,36 @@ public IOutputFile Add(string path, IVideo video)
116116

117117
---
118118

119-
## Add(string, IFontData, FontStyle) {#add}
119+
## Add(string, IFontData, FontStyleType) {#add}
120120

121-
Adds an output element for the font.
121+
Creates and adds an output file element for the specified font.
122122

123123
```csharp
124-
public IOutputFile Add(string path, IFontData fontData, FontStyle fontStyle)
124+
public IOutputFile Add(string path, IFontData fontData, FontStyleType fontStyle)
125125
```
126126

127127
| Parameter | Type | Description |
128128
| --- | --- | --- |
129-
| path | String | Output path. |
130-
| fontData | IFontData | Font to output. |
131-
| fontStyle | FontStyle | Font style. |
129+
| path | String | The file path where the font output will be saved. |
130+
| fontData | IFontData | The font data to be written to the output. |
131+
| fontStyle | FontStyleType | The style of the font (e.g., Regular, Bold, Italic). |
132132

133133
### Return Value
134134

135-
[`IOutputFile`](../../ioutputfile) object for the font.
135+
An [`IOutputFile`](../../ioutputfile) instance for the generated font.
136136

137137
### See Also
138138

139139
* interface [IOutputFile](../../ioutputfile)
140140
* interface [IFontData](../../../aspose.slides/ifontdata)
141+
* enum [FontStyleType](../../../aspose.slides/fontstyletype)
141142
* class [Output](../../output)
142143
* namespace [Aspose.Slides.Export.Web](../../output)
143144
* assembly [Aspose.Slides](../../../)
144145

145146
---
146147

147-
## Add(string, string) {#add_5}
148+
## Add(string, string) {#add_6}
148149

149150
Adds an output element for the text content.
150151

content/net/english/aspose.slides.export/slideimageformat/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class SlideImageFormat : ISlideImageFormat
2525

2626
| Name | Description |
2727
| --- | --- |
28-
| static [Bitmap](../../aspose.slides.export/slideimageformat/bitmap)(floatImageFormat) | Slides should be converted to a raster image. |
28+
| static [Bitmap](../../aspose.slides.export/slideimageformat/bitmap#bitmap)(floatImageFormat) | Slides should be converted to a raster image. |
2929
| static [Svg](../../aspose.slides.export/slideimageformat/svg)(SVGOptions) | Slides should converted to a SVG format. |
3030

3131
### See Also

content/net/english/aspose.slides.export/slideimageformat/bitmap/_index.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,17 @@ url: /aspose.slides.export/slideimageformat/bitmap/
1212
Slides should be converted to a raster image.
1313

1414
```csharp
15-
public static SlideImageFormat Bitmap(float scale, ImageFormat imgFormat)
15+
public static SlideImageFormat Bitmap(float scale, ImageFormat imageFormat)
1616
```
1717

1818
| Parameter | Type | Description |
1919
| --- | --- | --- |
20-
| scale | Single | Image scale factor. |
21-
| imgFormat | ImageFormat | Image format. |
20+
| scale | Single | The factor by which to scale the output image. |
21+
| imageFormat | ImageFormat | The format of the resulting image (e.g., PNG, JPEG). |
2222

2323
### See Also
2424

25+
* enum [ImageFormat](../../../aspose.slides/imageformat)
2526
* class [SlideImageFormat](../../slideimageformat)
2627
* namespace [Aspose.Slides.Export](../../slideimageformat)
2728
* assembly [Aspose.Slides](../../../)

content/net/english/aspose.slides.import/excelworkbookimporter/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ExcelWorkbookImporter
33
second_title: Aspose.Sildes for .NET API Reference
44
description: Provides functionality for importing content from an Excel workbook into a presentation.
55
type: docs
6-
weight: 7380
6+
weight: 7390
77
url: /aspose.slides.import/excelworkbookimporter/
88
---
99

content/net/english/aspose.slides.import/externalresourceresolver/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ExternalResourceResolver
33
second_title: Aspose.Sildes for .NET API Reference
44
description: Callback class used to resolve external resources during Html Svg documents import. Using this resolver could create a vulnerability when client provided HTML or SVG file will make server software to obtain local or network file. Use with caution. It is recommended not to specify ExternalResourceResolver at all only embedded objects will be read or create some subclass which checks if specified uri is valid.
55
type: docs
6-
weight: 7390
6+
weight: 7400
77
url: /aspose.slides.import/externalresourceresolver/
88
---
99

0 commit comments

Comments
 (0)