Skip to content

Commit 48bb8aa

Browse files
Fixed some markup errors.
1 parent 60819ec commit 48bb8aa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/vsto/custom-xml-parts-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ ms.workload:
7070
### Modify XML parts without starting the Office application
7171
You can add or modify a custom XML part without starting Excel, PowerPoint, or Word. This is useful if you want to work with XML data in a document on a computer that does not have Microsoft Office applications installed, such as a server.
7272

73-
To add a custom XML part without starting Microsoft Office, use classes in the Open XML SDK. These classes are designed to provide access to Open XML content that is specific to Office documents. For example, to add a custom XML part to an Excel workbook, you use the <xref:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddNewPart%2A?displayProperty=fullName> method of a <xref:DocumentFormat.OpenXml.Packaging.WorkbookPart> object. For more information, see [Open XML SDK](/office/open-xml/open-xml-sdk).
73+
To add a custom XML part without starting Microsoft Office, use classes in the Open XML SDK. These classes are designed to provide access to Open XML content that is specific to Office documents. For example, to add a custom XML part to an Excel workbook, you use the <xref:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddNewPart%2A> method of a <xref:DocumentFormat.OpenXml.Packaging.WorkbookPart> object. For more information, see [Open XML SDK](/office/open-xml/open-xml-sdk).
7474

7575
## Bind custom XML parts to Word content controls
7676
You can bind content controls in a Word solution to elements in a custom XML part. When a content control is bound to a custom XML part, the data in the custom XML part is displayed in the user interface (UI) of the content control. If a user edits text in the control, the corresponding XML element is automatically updated. Similarly, if element values in the custom XML parts are changed, the content controls that are bound to the XML elements display the new data. For more information, see [Content controls](../vsto/content-controls.md).

docs/vsto/how-autosave-impacts-office-solutions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ms.workload:
2020

2121
AutoSave is a feature for Excel, PowerPoint, and Word that automatically and continuously saves your edits. If the feature is turned off, you must save files manually to keep your changes. You may need to adjust your Office solution so that it works smoothly even while AutoSave is on. For details, see [How AutoSave impacts add-ins and macros](/office/vba/library-reference/concepts/how-autosave-impacts-addins-and-macros). For more information about AutoSave in general, see [What is AutoSave?](https://support.office.com/en-US/article/What-is-AutoSave-6d6bd723-ebfd-4e40-b5f6-ae6e8088f7a5).
2222

23-
> ![NOTE]
23+
> [!NOTE]
2424
> AutoSave for Windows Desktop Word, Excel, and PowerPoint was introduced in 2017 and is currently available for Office365 subscribers. If you bought a perpetual license to Office 2016 or earlier, you don't currently have access to the coauthoring feature. (Excel Online, Excel for Android, Excel for iOS, and Excel Mobile in the Windows Store do support this feature, though.)
2525
2626
## See also

docs/vsto/writing-code-in-office-solutions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ ms.workload:
5656
The Office PIAs are not required on end-user computers to run Office solutions that target the [!INCLUDE[net_v40_short](../sharepoint/includes/net-v40-short-md.md)] or later. For more information, see [Design and create Office solutions](../vsto/designing-and-creating-office-solutions.md).
5757

5858
### Use types in primary interop assemblies
59-
The Office PIAs contain a combination of types that expose the object model of the Office applications and additional infrastructure types that are not intended to be used directly in your code. For an overview of the types in the Office PIAs, see [Overview of classes and interfaces in the Office primary interop assemblies](/previous-versions/office/office-12//ms247299(v=office.12)).
59+
The Office PIAs contain a combination of types that expose the object model of the Office applications and additional infrastructure types that are not intended to be used directly in your code. For an overview of the types in the Office PIAs, see [Overview of classes and interfaces in the Office primary interop assemblies](/previous-versions/office/office-12/ms247299\(v\=office.12\)).
6060

6161
Because the types in the Office PIAs correspond to types in the COM-based object models, the way you use these types is often different from other managed types. For example, the way you call methods that have optional parameters in an Office primary interop assembly depends on the programming language you are using in your project. For more information, see the following topics:
6262

0 commit comments

Comments
 (0)