Actions object (Outlook)
Contains a collection of Action objects that represent all the specialized actions that can be executed on an Outlook item.
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.
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
Name |
---|
Application |
Class |
Count |
Parent |
Session |
Outlook Object Model Reference Actions Object Members
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.