RulePriority
This document is no longer available beyond version 21. Information can now be found here: RulePriority for version 25
The features available depend on your Altium product access level. Compare features included in the various levels of Altium Designer Software Subscription and functionality delivered through applications provided by the Altium 365 platform.
If you don’t see a discussed feature in your software, contact Altium Sales to find out more.
Parent page: PCB Query Functions - Fields
Summary Copy Link Copied
Returns all design rule objects whose Rule Priority property complies with the Query.
Syntax Copy Link Copied
RulePriority : Numeric_String
RulePriority : Number
Example Usage Copy Link Copied
RulePriority = '1'
RulePriority <> '' && RulePriority = 1
Returns all design rule objects whose Rule Priority property is 2.
RulePriority > '' && RulePriority Between 3 And 5
Returns all design rule objects whose Rule Priority property is greater than, or equal to, 3 and less than, or equal to, 5.
ObjectKind Like '*Rule' && RulePriority >= 4
Returns all design rule objects whose Rule Priority property is greater than, or equal to, 4.
IsRule && RulePriority < 4
Returns all design rule objects whose Rule Priority property is less than 4.
RulePriority <> '1'
Returns all objects except design rule objects whose Rule Priority property is 1.
IsRule && RulePriority <> 1
Returns all design rule objects whose Rule Priority property is not equal to 1.
Tips Copy Link Copied
- The Rule Priority property is only defined for design rule objects.