InNetClass
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 - Membership Checks
Summary Copy Link Copied
Returns all nets (and their associated objects) that are members of the specified Net Class.
Syntax Copy Link Copied
InNetClass(ClassName : String) : Boolean/Boolean_String
Example Usage Copy Link Copied
InNetClass('Data Bus Nets')
InNetClass('Data Bus Nets') = True
InNetClass('Data Bus Nets') = 'True'
Returns all nets (and their associated objects) that are members of the Data Bus Nets
Net Class.
Not InNetClass('Address Bus Nets')
InNetClass('Address Bus Nets') = False
InNetClass('Address Bus Nets') = 'False'
Returns all objects except nets (and their associated objects) that are members of the Address Bus Nets
Net Class.
Tips Copy Link Copied
- The single quote characters (') at the start and end of the
ClassName
string are mandatory.