Skip to content

Commit f30f9d8

Browse files
Apply suggestions from code review
Co-authored-by: Abadzhev <[email protected]>
1 parent 233d715 commit f30f9d8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# DevExpress Presentation API Library – Get Started
99

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

1212
### Slide #1
1313

@@ -21,7 +21,7 @@ This example creates a presentation with three slides and populates them with co
2121
![slide 3](media/gs-resulting-slide3.png)
2222

2323
> [!Important]
24-
> The Universal Subscription or an additional Office File API Subscription is required to use this example in production code. For pricing information, please refer to the [DevExpress Subscription](https://www.devexpress.com/Subscriptions/) page.
24+
> 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/).
2525
2626
## Implementation Details
2727

@@ -36,15 +36,15 @@ This example creates a presentation with three slides and populates them with co
3636
SlideMaster slideMaster = presentation.SlideMasters[0];
3737
```
3838

39-
* 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 the `Get` or `GetOrCreate` method.
39+
* 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.
4040

4141
```cs
4242
Slide slide1 = new Slide(slideMaster.Layouts.Get(SlideLayoutType.Title));
4343
//...
4444
presentation.Slides.Add(slide1);
4545
```
4646

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

4949
```cs
5050
Slide slide1 = new Slide(slideMaster.Layouts.Get(SlideLayoutType.Title));

0 commit comments

Comments
 (0)