diff --git a/docs/develop/make-office-add-in-compatible-with-existing-com-add-in.md b/docs/develop/make-office-add-in-compatible-with-existing-com-add-in.md index b853d86d0..dc8f392e0 100644 --- a/docs/develop/make-office-add-in-compatible-with-existing-com-add-in.md +++ b/docs/develop/make-office-add-in-compatible-with-existing-com-add-in.md @@ -1,7 +1,7 @@ --- title: Make your Office Add-in compatible with an existing COM add-in description: Enable compatibility between your Office Add-in and equivalent COM add-in. -ms.date: 01/30/2025 +ms.date: 02/12/2025 ms.localizationpriority: medium --- @@ -30,7 +30,28 @@ Before you can specify an equivalent COM add-in, you must first identify its `Pr > [!IMPORTANT] > Applies to Excel, Outlook, PowerPoint, and Word. -To enable compatibility between your Office Add-in and COM add-in, identify the equivalent COM add-in in the [manifest](add-in-manifests.md) of your Office Add-in. Then, Office on Windows will use the COM add-in instead of the Office Add-in, if they're both installed. +To enable compatibility between your Office Add-in and COM add-in, identify the equivalent COM add-in in the [manifest](add-in-manifests.md) of your Office Add-in. Then, Office on Windows will use the COM add-in instead of the Office Add-in, if they're both installed. The configuration depends on the type of manifest that is being used. + +# [Unified manifest for Microsoft 365](#tab/jsonmanifest) + +The following example shows the portion of the manifest that specifies a COM add-in as an equivalent add-in. The value of the "alternates.prefer.comAddin.progId" property identifies the COM add-in. + +```json +"extensions" [ + ... + "alternates" [ + { + "prefer": { + "comAddin": { + "progId": "ContosoCOMAddin" + } + } + } + ] +] +``` + +# [Add-in only manifest](#tab/xmlmanifest) The following example shows the portion of the manifest that specifies a COM add-in as an equivalent add-in. The value of the `ProgId` element identifies the COM add-in and the [EquivalentAddins](/javascript/api/manifest/equivalentaddins) element must be positioned immediately before the closing `VersionOverrides` tag. @@ -46,6 +67,8 @@ The following example shows the portion of the manifest that specifies a COM add ``` +--- + > [!TIP] > > - For information about COM add-in and XLL UDF compatibility, see [Make your custom functions compatible with XLL user-defined functions](../excel/make-custom-functions-compatible-with-xll-udf.md). Not applicable for Outlook.