Actions object (Outlook)

Contains a collection of Action objects that represent all the specialized actions that can be executed on an Outlook item.

Remarks

Use the Actions property of any Outlook item, such as MailItem, to return the Actions object.

Use Actions (index), where index is the name of an available action, to return a single Action object.

Example

The following Visual Basic for Applications (VBA) example uses the Reply action of a particular item to send a reply.

myItem = CreateItem(olMailItem) 
 
Set myReply = myItem.Actions("Reply").Execute

Methods

Name
Add
Item
Remove

Properties

Name
Application
Class
Count
Parent
Session

See also

Outlook Object Model Reference Actions Object Members

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.