RuleAction Interface

Definition

Represents an action that is run when a Rule object executes.

public interface class RuleAction : Microsoft::Office::Interop::Outlook::_RuleAction
[System.Runtime.InteropServices.Guid("000630CF-0000-0000-C000-000000000046")]
public interface RuleAction : Microsoft.Office.Interop.Outlook._RuleAction
Public Interface RuleAction
Implements _RuleAction
Derived
Attributes
Implements

Remarks

This is a .NET interface derived from a COM coclass that is required by managed code for interoperability with the corresponding COM object. Use this derived interface to access all method, property, and event members of the COM object. However, if a method or event you want to use shares the same name under the same COM object, cast to the corresponding primary interface to call the method, and cast to the latest events interface to connect to the event. Refer to this topic for information about the COM object. For information about the method and property members of the COM object, see _RuleAction.

RuleAction is the base class for rule actions that are supported in programmatic rule creation. The classes derived from RuleAction include:

The Rules object model provides partial parity with the Rules and Alerts Wizard in the Outlook user interface. It supports the most commonly used rule actions and conditions. Although it does not support creating rules with each rule action or rule condition that the Wizard supports, you can still enumerate and enable these rule actions and conditions in existing rules.

For more information on rule actions, see Specify Rule ActionsHow to: Create a Rule to Move Specific E-mails to a Folder

Properties

ActionType

Returns a constant from the OlRuleActionType enumeration that indicates the type of action that is taken by the RuleAction. Read-only.

(Inherited from _RuleAction)
Application

Returns an Application object that represents the parent Outlook application for the object. Read-only.

(Inherited from _RuleAction)
Class

Returns an OlObjectClass constant indicating the object's class. Read-only.

(Inherited from _RuleAction)
Enabled

Returns or sets a Boolean (bool in C#) that determines if the RuleAction is enabled. Read/write.

(Inherited from _RuleAction)
Parent

Returns the parent Object of the specified object. Read-only.

(Inherited from _RuleAction)
Session

Returns the NameSpace object for the current session. Read-only.

(Inherited from _RuleAction)

Applies to