Action.CopyLike (Outlook)
Returns or sets an OlActionCopyLike constant indicating the property inheritance style to use for the action. Possible return values are olForward - Properties of the new item will be set such that the new item is a forward of the original item. If creating a new MailItem, the value of the To and CC properties in the new item will be empty and the Subject property of the new item will be the original Subject with a prefix such as "FW:" (see Prefix property) added. The attachments on the original item will be copied to the new item, olReply - Properties of the new item will be set such that the new item is a reply to the original item. If creating a new MailItem, the value of the original To field will be copied to the SenderEmailAddress property of the new item, the CC field will be blank and the Subject field of the new item will be the original Subject with a prefix such as "RE:" (see Prefix property) added, olReplyAll - Properties of the new item will be set such that the new item is a reply to all of the senders of the original item. If creating a new MailItem, the value of the SenderEmailAddress and CC properties will be copied to the To property of the new item and the Subject property of the new item will be the Subject of the original item with a prefix such as "RE:" (see Prefix property) added, olReplyFolder - If creating a new PostItem based on an old one, the Post To property of the new item will contain the active folder address, the Subject property of the original item will be copied to the ConversationTopic property of the new item, and the Subject property of the new item will be empty, olRespond - Used exclusively for voting button actions.
The inheritance style is used when the action is executed to control how properties are copied to the new item created by the action.
Session.CreateSharingItem.Reply.Actions(1).CopyLike = olForward