Skip to content

Commit 2a484f6

Browse files
KseniyaKuzminaDevExpressExampleBotAbadzhev
authored
Update README.md (#1)
* Update README.md * Update README.md * README auto update [skip ci] * Update README.md * Update README.md * Update README.md * Apply suggestions from code review Co-authored-by: Abadzhev <[email protected]> --------- Co-authored-by: DevExpressExampleBot <[email protected]> Co-authored-by: Abadzhev <[email protected]>
1 parent db2649d commit 2a484f6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
<!-- default badges list -->
2-
![](https://img.shields.io/endpoint?url=https://codecentral.devexpress.com/api/v1/VersionRange/1023545041/25.1.4%2B)
3-
[![](https://img.shields.io/badge/Open_in_DevExpress_Support_Center-FF7200?style=flat-square&logo=DevExpress&logoColor=white)](https://supportcenter.devexpress.com/ticket/details/T1300596)
4-
[![](https://img.shields.io/badge/📖_How_to_use_DevExpress_Examples-e9f6fc?style=flat-square)](https://docs.devexpress.com/GeneralInformation/403183)
5-
[![](https://img.shields.io/badge/💬_Leave_Feedback-feecdd?style=flat-square)](#does-this-example-address-your-development-requirementsobjectives)
2+
Automatically generated badges
63
<!-- default badges end -->
74

85
# DevExpress Presentation API Library – Get Started
96

10-
This example creates a presentation with three slides and populates them with content.
7+
This example creates a new presentation, adds three slides, and populates slides with content.
118

129
### Slide #1
1310

@@ -20,6 +17,9 @@ This example creates a presentation with three slides and populates them with co
2017
### Slide #3
2118
![slide 3](media/gs-resulting-slide3.png)
2219

20+
> [!Important]
21+
> You need a license for the [DevExpress Office File API Subscription](https://www.devexpress.com/products/net/office-file-api/) or [DevExpress Universal Subscription](https://www.devexpress.com/subscriptions/universal.xml) to use our Office File API library in production code. For pricing information, refer to the following webpage: [DevExpress Subscriptions](https://www.devexpress.com/Subscriptions/).
22+
2323
## Implementation Details
2424

2525
* Use the `Presentation()` parameterless constructor to create a new presentation.
@@ -33,15 +33,15 @@ This example creates a presentation with three slides and populates them with co
3333
SlideMaster slideMaster = presentation.SlideMasters[0];
3434
```
3535

36-
* To create a slide, initialize `Slide` objects and add them to the `Presentation.Slides` collection. For each slide, specify the layout type in the `Slide` constructor parameters. In this example, slides get a predefined layout from a slide master. To obtain a layout from the `SlideMaster.Layouts`, you can call `Get` or `GetOrCreate` method.
36+
* To create a slide, initialize a `Slide` object and add it to the `Presentation.Slides` collection. For each slide, specify the layout type as a constructor parameter. In this example, slides use predefined layouts stored in the slide master. To obtain a layout from `SlideMaster.Layouts`, call the `Get` or `GetOrCreate` method.
3737

3838
```cs
3939
Slide slide1 = new Slide(slideMaster.Layouts.Get(SlideLayoutType.Title));
4040
//...
4141
presentation.Slides.Add(slide1);
4242
```
4343

44-
* Layouts adds placeholder shapes to slides. You can access placeholder shapes in `Slide.Shapes` collection to add desired content.
44+
* Layouts add placeholder shapes to slides. Use the `Slide.Shapes` collection to access placeholder shapes and populate them with content.
4545

4646
```cs
4747
Slide slide1 = new Slide(slideMaster.Layouts.Get(SlideLayoutType.Title));
@@ -74,7 +74,7 @@ This example creates a presentation with three slides and populates them with co
7474

7575
## Documentation
7676

77-
- [Create Your First Presentation with DevExpress Presentation API Library](https://docs.devexpress.devx/OfficeFileAPI/405404/presentation-api/create-first-presentation)
77+
- [Create Your First Presentation with DevExpress Presentation API Library](https://docs.devexpress.com/OfficeFileAPI/405404/presentation-api/create-first-presentation)
7878
7979
## More Examples
8080

0 commit comments

Comments
 (0)