You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/general/how-to-add-a-new-document-part-that-receives-a-relationship-id-to-a-package.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ It then adds the MainDocumentPart part in the new word processing document, with
57
57
The code then adds the `DigitalSignatureOriginPart` part, the `ExtendedFilePropertiesPart` part, and the `ThumbnailPart` part in the new word processing document with realtionship IDs rId4, rId5, and rId6.
58
58
59
59
> [!NOTE]
60
-
> The <xref:DocumentFormat.OpenXml.Packaging.WordprocessingDocument.AddNewPart*> method creates a relationship from the current document part to the new document part. This method returns the new document part. Also, you can use the <ahref="xref:DocumentFormat.OpenXml.Packaging.DataPart.FeedData*?displayProperty=nameWithType"/> method to fill the document part.
60
+
> The <xref:DocumentFormat.OpenXml.Packaging.WordprocessingDocument.AddNewPart*> method creates a relationship from the current document part to the new document part. This method returns the new document part. Also, you can use the <DocumentFormat.OpenXml.Packaging.DataPart.FeedData*> method to fill the document part.
Copy file name to clipboardExpand all lines: docs/includes/word/structure.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ The basic document structure of a `WordProcessingML` document consists of the `d
14
14
</w:document>
15
15
```
16
16
17
-
Using the Open XML SDK, you can create document structure and content using strongly-typed classes that correspond to `WordprocessingML` elements. You will find these classes in the <ahref="xref:DocumentFormat.OpenXml.Wordprocessing?displayProperty=fullName" /> namespace. The following table lists the class names of the classes that correspond to the `document`, `body`, `p`, `r`, and `t` elements.
17
+
Using the Open XML SDK, you can create document structure and content using strongly-typed classes that correspond to `WordprocessingML` elements. You will find these classes in the <xref:DocumentFormat.OpenXml.Wordprocessing> namespace. The following table lists the class names of the classes that correspond to the `document`, `body`, `p`, `r`, and `t` elements.
18
18
19
19
|**WordprocessingML Element**|**Open XML SDK Class**|**Description**|
Copy file name to clipboardExpand all lines: docs/presentation/structure-of-a-presentationml-document.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ A PresentationML document is not stored as one large body in a single part. Inst
25
25
26
26
## Important Presentation Parts
27
27
28
-
Using the Open XML SDK, you can create document structure and content that uses strongly-typed classes that correspond to PresentationML elements. You can find these classes in the <ahref="xref:DocumentFormat.OpenXml.Presentation?displayName=fullName" /> namespace. The following table lists the class names of the classes that correspond to some of the important presentation elements.
28
+
Using the Open XML SDK, you can create document structure and content that uses strongly-typed classes that correspond to PresentationML elements. You can find these classes in the <xref:DocumentFormat.OpenXml.Presentation> namespace. The following table lists the class names of the classes that correspond to some of the important presentation elements.
29
29
30
30
|**Package Part**|**Top Level PresentationML Element**|**Open XML SDK Class**|**Description**\*|
> In the following code snippets `P` represents the <ahref="xref:DocumentFormat.OpenXml.Presentation?displayProperty=fullName"/> namespace and `D` represents the <ahref="xref:DocumentFormat.OpenXml.Drawing?displayProperty=fullName"/> namespace.
171
+
> In the following code snippets `P` represents the <xref:DocumentFormat.OpenXml.Presentation> namespace and `D` represents the <ref:DocumentFormat.OpenXml.Drawing> namespace.
172
172
173
173
In the snippet below, a presentation is opened with `Presentation.Open` and the first <xref:DocumentFormat.OpenXml.Packaging.SlidePart>
174
174
is retrieved or added if the presentation does not already have a `SlidePart`.
Copy file name to clipboardExpand all lines: docs/presentation/working-with-slide-layouts.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -168,7 +168,7 @@ the `CommonSlideData` class, the `ColorMapOverride` class, the <xref:DocumentFor
168
168
169
169
The following method from the article [How to: Create a presentation document by providing a file name](how-to-create-a-presentation-document-by-providing-a-file-name.md) adds a new slide layout part to an existing presentation and creates an instance of an Open XML SDK `SlideLayout` class in the new slide layout part. The `SlideLayout` class constructor creates instances of the `CommonSlideData` class and the `ColorMapOverride` class. The `CommonSlideData` class constructor creates an instance of the <xref:DocumentFormat.OpenXml.Presentation.ShapeTree> class, whose constructor in turn creates additional class instances: an instance of the <xref:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties> class, an instance of the <xref:DocumentFormat.OpenXml.Presentation.GroupShapeProperties> class, and an instance of the <xref:DocumentFormat.OpenXml.Presentation.Shape> class.
170
170
171
-
The namespace represented by the letter *P* in the code is the <ahref="xref:DocumentFormat.OpenXml.Presentation?displayName=fullName" /> namespace.
171
+
The namespace represented by the letter *P* in the code is the <xref:DocumentFormat.OpenXml.Presentation> namespace.
Copy file name to clipboardExpand all lines: docs/presentation/working-with-slide-masters.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -147,7 +147,7 @@ element. Among these classes, as shown in the following code sample, are the `Co
147
147
148
148
The following method from the article [How to: Create a presentation document by providing a file name](./how-to-create-a-presentation-document-by-providing-a-file-name.md) adds a new slidemaster part to an existing presentation and creates an instance of an Open XML SDK `SlideMaster` class in the new slide master part. The `SlideMaster` class constructor creates instances of the `CommonSlideData` class and the `ColorMap`, `SlideLayoutIdList`, and `TextStyles` classes. The `CommonSlideData` class constructor creates an instance of the <xref:DocumentFormat.OpenXml.Presentation.ShapeTree> class, whose constructor in turn creates additional class instances: an instance of the <xref:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties> class, an instance of the <xref:DocumentFormat.OpenXml.Presentation.GroupShapeProperties> class, and an instance of the <xref:DocumentFormat.OpenXml.Presentation.Shape> class, among others.
149
149
150
-
The namespace represented by the letter *P* in the code is the <ahref="xref:DocumentFormat.OpenXml.Presentation?displayName=fullName" /> namespace.
150
+
The namespace represented by the letter *P* in the code is the <xref:DocumentFormat.OpenXml.Presentation> namespace.
0 commit comments