Skip to content

Commit e2a2caf

Browse files
SLIDESDOC-719 Update section titles in Aspose.Slides for .NET articles (#878)
Updated the section titles in 161 articles.
1 parent 552d841 commit e2a2caf

File tree

160 files changed

+578
-583
lines changed

Some content is hidden

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

160 files changed

+578
-583
lines changed

en/net/ai/generator/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Currently, the AI Presentation Generator structures content using text blocks, b
3030

3131
The output is a complete PowerPoint presentation that can be used as-is or exported to any format supported by the Aspose.Slides API. While the generator produces high-quality results, minor post-editing may be required to meet specific requirements.
3232

33-
## **How it Works**
33+
## **How It Works**
3434

3535
Aspose.Slides does not include built-in AI models; instead, it integrates with external AI services over the internet. This integration is handled by the [SlidesAIAgent](https://reference.aspose.com/slides/net/aspose.slides.ai/slidesaiagent/) class, which uses an implementation of the [IAIWebClient](https://reference.aspose.com/slides/net/aspose.slides.ai/iaiwebclient/) interface to communicate with the AI model.
3636

en/net/ai/translator/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ description: "Translate PowerPoint slides with AI using Aspose.Slides for .NET.
2929

3030
Aspose.Slides is a powerful API for programmatically managing PowerPoint presentations. In addition to creating, editing, and converting slides, it offers AI-driven features - such as the [Presentation Translation API](https://reference.aspose.com/slides/net/aspose.slides.ai/) for multilingual slide content.
3131

32-
## **How it Works**
32+
## **How It Works**
3333

3434
Aspose.Slides does not include built-in AI capabilities but integrates with external AI models over the internet. This functionality is exposed via the [SlidesAIAgent](https://reference.aspose.com/slides/net/aspose.slides.ai/slidesaiagent) class, which uses an implementation of the [IAIWebClient](https://reference.aspose.com/slides/net/aspose.slides.ai/iaiwebclient/) interface to communicate with AI services.
3535

en/net/developer-guide/manage-presentation/convert-presentation/convert-powerpoint/convert-powerpoint-to-html/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ public class CustomFormattingController : IHtmlFormattingController
234234
}
235235
```
236236

237-
## **Save CSS and Images when Exporting to HTML**
237+
## **Save CSS and Images When Exporting to HTML**
238238

239239
Using new CSS style files, you can easily change the appearance of the HTML file generated from the PowerPoint-to-HTML conversion process.
240240

@@ -286,7 +286,7 @@ public class CustomHeaderAndFontsController : EmbedAllFontsHtmlController
286286
}
287287
```
288288

289-
## **Link All Fonts when Converting a Presentation to HTML**
289+
## **Link All Fonts When Converting a Presentation to HTML**
290290

291291
If you do not want to embed fonts (to avoid increasing the size of the resulting HTML), you can link all fonts by implementing your own `LinkAllFontsHtmlController` version.
292292

en/net/developer-guide/manage-presentation/convert-presentation/convert-powerpoint/convert-powerpoint-to-jpg/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ using (Presentation presentation = new Presentation("PowerPoint_Presentation.ppt
9090
}
9191
```
9292

93-
## **Render Comments when Saving Slides as Images**
93+
## **Render Comments When Saving Slides as Images**
9494

9595
Aspose.Slides for .NET provides a feature that allows you to render comments on a presentation's slides when converting them into JPG images. This functionality is particularly useful for preserving annotations, feedback, or discussions added by collaborators in PowerPoint presentations. By enabling this option, you ensure that comments are visible in the generated images, making it easier to review and share feedback without needing to open the original presentation file.
9696

@@ -129,7 +129,7 @@ The result:
129129

130130
![The JPG image with comments](image_with_comments.png)
131131

132-
## **See also**
132+
## **See Also**
133133

134134
See other options for converting PPT, PPTX, or ODP to images, such as:
135135

en/net/developer-guide/manage-presentation/convert-presentation/convert-powerpoint/convert-powerpoint-to-markdown/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ using (Presentation pres = new Presentation("pres.pptx"))
7575

7676
The 23 supported markdown flavors are [listed under the Flavor enumeration](https://reference.aspose.com/slides/net/aspose.slides.dom.export.markdown.saveoptions/flavor/) from the [MarkdownSaveOptions](https://reference.aspose.com/slides/net/aspose.slides.dom.export.markdown.saveoptions/markdownsaveoptions/) class.
7777

78-
## **Convert Presentation Containing Images to Markdown**
78+
## **Convert a Presentation Containing Images to Markdown**
7979

8080
The [MarkdownSaveOptions](https://reference.aspose.com/slides/net/aspose.slides.dom.export.markdown.saveoptions/markdownsaveoptions/) class provides properties and enumerations that allow you to use certain options or settings for the resulting markdown file. The [MarkdownExportType](https://reference.aspose.com/slides/net/aspose.slides.dom.export.markdown.saveoptions/markdownexporttype/) enum, for example, can be set to values that determine how images are rendered or handled: `Sequential`, `TextOnly`, `Visual`.
8181

en/net/developer-guide/manage-presentation/convert-presentation/convert-powerpoint/convert-powerpoint-to-png/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This article explains how to convert PowerPoint Presentation to PNG format using
3535
- [Convert ODP to PNG in C#](#convert-powerpoint-to-png)
3636
- [Convert PowerPoint Slide to Image in C#](#convert-powerpoint-to-png)
3737

38-
## **C# PowerPoint to PNG**
38+
## **PowerPoint to PNG in .NET**
3939

4040
For C# sample code to convert PowerPoint to PNG, please see the section below i.e. [Convert PowerPoint to PNG](#convert-powerpoint-to-png). The code can load number of formats like PPT, PPTX and ODP in Presentation object and then save its slide thumbnail to PNG format. The other PowerPoint to Image conversions which are sort of similar like JPG, BMP, TIFF and SVG are discussed in these articles.
4141

en/net/developer-guide/manage-presentation/convert-presentation/convert-powerpoint/convert-powerpoint-to-xps/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ When converting a presentation to XPS, you have to save the presentation using e
6666
- Default settings (without [**XPSOptions**](https://reference.aspose.com/slides/net/aspose.slides.export/xpsoptions))
6767
- Custom settings (with [**XPSOptions**](https://reference.aspose.com/slides/net/aspose.slides.export/xpsoptions))
6868

69-
### **Converting Presentations to XPS Using Default Settings**
69+
### **Convert Presentations to XPS Using Default Settings**
7070

7171
This sample code in C# shows you how to convert a presentation to an XPS document using standard settings:
7272

@@ -80,7 +80,7 @@ using (Presentation pres = new Presentation("Convert_XPS.pptx"))
8080
```
8181

8282

83-
### **Converting Presentations to XPS Using Custom Settings**
83+
### **Convert Presentations to XPS Using Custom Settings**
8484
This sample code shows you how to convert a presentation to an XPS document using custom settings in C#:
8585

8686
```c#

en/net/developer-guide/manage-presentation/convert-presentation/convert-powerpoint/convert-ppt-to-pptx/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This article explains how to convert PowerPoint Presentation in PPT format into
2626

2727
- [Convert PPT to PPTX in C#](#convert-ppt-to-pptx)
2828

29-
## **C# Convert PPT to PPTX**
29+
## **Convert PPT to PPTX in .NET**
3030

3131
For C# sample code to convert PPT to PPTX, please see the section below i.e. [Convert PPT to PPTX](#convert-ppt-to-pptx). It just loads the PPT file and saves in PPTX format. By specifiying different save formats, you can also save PPT file into many other formats like PDF, XPS, ODP, HTML etc. as disscussed in these articles.
3232

en/net/developer-guide/manage-presentation/convert-presentation/convert-powerpoint/convert-pptx-to-ppt/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This article explains how to convert PowerPoint Presentation in PPTX format into
2626

2727
- Convert PPTX to PPT in C#
2828

29-
## **C# Convert PPTX to PPT**
29+
## **Convert PPTX to PPT in .NET**
3030

3131
For C# sample code to convert PPTX to PPT, please see the section below i.e. [Convert PPTX to PPT](#convert-pptx-to-ppt). It just loads the PPTX file and saves in PPT format. By specifiying different save formats, you can also save PPTX file into many other formats like PDF, XPS, ODP, HTML etc. as disscussed in these articles.
3232

en/net/developer-guide/manage-presentation/convert-presentation/export-to-xaml/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ keywords:
2929
description: "Convert PowerPoint and OpenDocument slides to XAML in .NET using Aspose.Slides—quick, Office-free solution that keeps your layout intact."
3030
---
3131

32-
# **Exporting Presentations to XAML**
32+
## **Export Presentations to XAML**
3333

3434
{{% alert title="Info" color="info" %}}
3535

3636
In [Aspose.Slides 21.6](https://docs.aspose.com/slides/net/aspose-slides-for-net-21-6-release-notes/), we implemented support for XAML export. You can now export your presentations to XAML.
3737

3838
{{% /alert %}}
3939

40-
# **About XAML**
40+
## **About XAML**
4141

4242
XAML is a descriptive programming language that allows you to build or write user interfaces for apps, especially those that use WPF (Windows Presentation Foundation), UWP (Universal Windows Platform), and Xamarin forms.
4343

4444
XAML, which is an XML-based language, is Microsoft’s variant for describing a GUI. You are likely to use a designer to work on XAML files most of the time, but you can still write and edit your GUI.
4545

46-
## **Exporting Presentations to XAML With Default Options**
46+
## **Export Presentations to XAML With Default Options**
4747

4848
This C# code shows you how to export a presentation to XAML with default settings:
4949

@@ -54,7 +54,7 @@ using (Presentation pres = new Presentation("pres.pptx"))
5454
}
5555
```
5656

57-
## **Exporting Presentations to XAML With Custom Options**
57+
## **Export Presentations to XAML With Custom Options**
5858

5959
You get to select options from the [IXamlOptions](https://reference.aspose.com/slides/net/aspose.slides.export.xaml/ixamloptions) interface that control the export process and determine how Aspose.Slides exports your presentation to XAML.
6060

0 commit comments

Comments
 (0)