Skip to content

Latest commit

 

History

History
54 lines (29 loc) · 1.52 KB

PowerPoint.Application.AddIns.md

File metadata and controls

54 lines (29 loc) · 1.52 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.AddIns property (PowerPoint)
vbapp10.chm502019
vbapp10.chm502019
PowerPoint.Application.AddIns
5a5a030f-45cd-3b82-f41a-eab53b1ed48f
06/08/2017
medium

Application.AddIns property (PowerPoint)

Returns the program-specific AddIns collection that represents all the add-ins listed in the Add-Ins dialog box (click the Office button, click PowerPoint Options, click Add-Ins, click PowerPoint Add-Ins on the Manage list). Read-only.

Syntax

expression. AddIns

expression A variable that represents an Application object.

Remarks

Microsoft Office PowerPoint-specific add-ins are identified by a .ppa or .ppam file name extension. Component Object Model (COM) add-ins can be used universally across Microsoft programming products and have a .dll or .exe file name extension.

For information about returning a single member of a collection, see Returning an object from a collection.

Example

This example adds the add-in named "Myaddin.ppa" to the list in the Add-Ins dialog box and loads the add-in automatically.

Set myAddIn = Application.AddIns.Add(FileName:="c:\myaddin.ppa")

myAddIn.Loaded = True

MsgBox myAddIn.Name & " has been added to the list"

See also

Application Object

[!includeSupport and feedback]