Action Object
Description
Represents a specialized action (for example, the voting options response) that can be executed on an item. The Action object is a member of the Actions collection.
Using the Action Object
Use Actions(index), where index is the name of an available action, to return a single Action object. The following example uses the "Reply" action of a particular item to send a reply.
Set myReply = myItem.Actions("Reply").Execute
The following example does the same thing, using a different reply style for the reply.
myItem.Actions("Reply").ReplyStyle = _
olIncludeOriginalText
Set myReply = myItem.Actions("Reply").Execute
Properties
CopyLike property, Enabled property, MessageClass property, Name property, Parent property, Prefix property, ReplyStyle property, ResponseStyle property, ShowOn property.
Methods
Delete method, Execute method.