AddIn.Loaded property (PowerPoint)

Determines whether the specified add-in is loaded. Read/write.

Syntax

expression. Loaded

expression A variable that represents an AddIn object.

Return value

MsoTriState

Remarks

The value of the Loaded property can be one of these MsoTriState constants.

Constant Description
msoFalse TThe specified add-in is not loaded.
msoTrue The specified add-in is loaded.

Example

This example adds MyTools.ppa to the list in the Add-Ins tab and then loads it.

Addins.Add("c:\my documents\mytools.ppa").Loaded = msoTrue

This example unloads the add-in named "MyTools."

Application.Addins("mytools").Loaded = msoFalse

See also

AddIn Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.