_Rule.ExecutionOrder Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns or sets an Integer (int in C#) value that indicates the order of execution of the rule among other rules in the Rules collection. Read/write.
public:
property int ExecutionOrder { int get(); void set(int value); };
public int ExecutionOrder { get; set; }
Public Property ExecutionOrder As Integer
Property Value
Remarks
ExecutionOrder is directly mapped with the numerical value of Index
in Item[Object]. For example, Rules.Item(1) represents a rule with ExecutionOrder being 1, Rules.Item(2) represents a rule with ExecutionOrder being 2, and Rules.Item(Rules.Count) represents the rule with ExecutionOrder being Count.