Skip to content

Commit 80c463d

Browse files
committed
revert changes to presentation folder
1 parent 0cd3853 commit 80c463d

12 files changed

+67
-11
lines changed

docs/includes/using-statement.md

Whitespace-only changes.

docs/presentation/how-to-apply-a-theme-to-a-presentation.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,12 @@ represents the path for the target presentation document.
5151
***
5252

5353

54-
[!include[Using Statement](../includes/using-statement.md)]
54+
The **using** statement provides a recommended
55+
alternative to the typical .Open, .Save, .Close sequence. It ensures
56+
that the **Dispose** method (internal method
57+
used by the Open XML SDK to clean up resources) is automatically called
58+
when the closing brace is reached. The block that follows the **using** statement establishes a scope for the
59+
object that is created or named in the **using** statement, in this case **themeDocument** and **presentationDocument**.
5560

5661

5762
-----------------------------------------------------------------------------

docs/presentation/how-to-change-the-fill-color-of-a-shape-in-a-presentation.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,12 @@ you want to open the document.
5353
***
5454

5555

56-
[!include[Using Statement](../includes/using-statement.md)]
56+
The **using** statement provides a recommended
57+
alternative to the typical .Open, .Save, .Close sequence. It ensures
58+
that the **Dispose** method (internal method
59+
used by the Open XML SDK to clean up resources) is automatically called
60+
when the closing brace is reached. The block that follows the **using** statement establishes a scope for the
61+
object that is created or named in the **using** statement, in this case *ppt*.
5762

5863

5964
## The Structure of the Shape Tree

docs/presentation/how-to-delete-a-slide-from-a-presentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ statement.
7676
***
7777

7878

79-
[!include[Using Statement](../includes/using-statement.md)]
79+
The **using** statement provides a recommended alternative to the typical .Open, .Save, .Close sequence. It ensures that the **Dispose** method (internal method used by the Open XML SDK to clean up resources) is automatically called when the closing brace is reached. The block that follows the **using** statement establishes a scope for the object that is created or named in the **using** statement, in this case **presentationDocument**.
8080

8181
[!include[Structure](../includes/presentation/structure.md)]
8282

docs/presentation/how-to-delete-all-the-comments-by-an-author-from-all-the-slides-in-a-presentatio.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,12 @@ Options.
5959
***
6060

6161

62-
[!include[Using Statement](../includes/using-statement.md)]
62+
The **using** statement provides a recommended
63+
alternative to the typical .Open, .Save, .Close sequence. It ensures
64+
that the **Dispose** method (internal method
65+
used by the Open XML SDK to clean up resources) is automatically called
66+
when the closing brace is reached. The block that follows the **using** statement establishes a scope for the
67+
object that is created or named in the **using** statement, in this case *doc*.
6368

6469
[!include[Structure](../includes/presentation/structure.md)]
6570

docs/presentation/how-to-get-all-the-external-hyperlinks-in-a-presentation.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,12 @@ path for the file from which you want to open the document.
5858
***
5959

6060

61-
[!include[Using Statement](../includes/using-statement.md)]
61+
The **using** statement provides a recommended
62+
alternative to the typical .Open, .Save, .Close sequence. It ensures
63+
that the **Dispose** method (internal method
64+
used by the Open XML SDK to clean up resources) is automatically called
65+
when the closing brace is reached. The block that follows the **using** statement establishes a scope for the
66+
object that is created or named in the **using** statement, in this case **document**.
6267

6368

6469
--------------------------------------------------------------------------------

docs/presentation/how-to-get-all-the-text-in-a-slide-in-a-presentation.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@ document.
5656
***
5757

5858

59-
[!include[Using Statement](../includes/using-statement.md)]
59+
The **using** statement provides a recommended
60+
alternative to the typical .Open, .Save, .Close sequence. It ensures
61+
that the **Dispose** method (internal method
62+
used by the Open XML SDK to clean up resources) is automatically called
63+
when the closing brace is reached. The block that follows the **using** statement establishes a scope for the
64+
object that is created or named in the **using** statement, in this case **presentationDocument**.
6065

6166

6267
--------------------------------------------------------------------------------

docs/presentation/how-to-get-all-the-text-in-all-slides-in-a-presentation.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@ document.
5656
***
5757

5858

59-
[!include[Using Statement](../includes/using-statement.md)]
59+
The **using** statement provides a recommended
60+
alternative to the typical .Open, .Save, .Close sequence. It ensures
61+
that the **Dispose** method (internal method
62+
used by the Open XML SDK to clean up resources) is automatically called
63+
when the closing brace is reached. The block that follows the **using** statement establishes a scope for the
64+
object that is created or named in the **using** statement, in this case **presentationDocument**.
6065

6166

6267
--------------------------------------------------------------------------------

docs/presentation/how-to-get-the-titles-of-all-the-slides-in-a-presentation.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,14 @@ document.
5555
```
5656
***
5757

58-
[!include[Using Statement](../includes/using-statement.md)]
58+
59+
The **using** statement provides a recommended
60+
alternative to the typical .Open, .Save, .Close sequence. It ensures
61+
that the **Dispose** method (internal method
62+
used by the Open XML SDK to clean up resources) is automatically called
63+
when the closing brace is reached. The block that follows the **using** statement establishes a scope for the
64+
object that is created or named in the **using** statement, in this case
65+
*presentationDocument*.
5966

6067
[!include[Structure](../includes/presentation/structure.md)]
6168

docs/presentation/how-to-insert-a-new-slide-into-a-presentation.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,14 @@ document.
5151
```
5252
***
5353

54-
[!include[Using Statement](../includes/using-statement.md)]
54+
55+
The **using** statement provides a recommended
56+
alternative to the typical .Open, .Save, .Close sequence. It ensures
57+
that the **Dispose** method (internal method
58+
used by the Open XML SDK to clean up resources) is automatically called
59+
when the closing brace is reached. The block that follows the **using** statement establishes a scope for the
60+
object that is created or named in the **using** statement, in this case
61+
*presentationDocument*.
5562

5663
[!include[Structure](../includes/presentation/structure.md)]
5764

0 commit comments

Comments
 (0)