InPadClass
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 pad objects that are members of the specified Pad Class.
Syntax Copy Link Copied
InPadClass(ClassName : String) : Boolean/Boolean_String
Example Usage Copy Link Copied
InPadClass('Top Side Probe Pads')
InPadClass('Top Side Probe Pads') = True
InPadClass('Top Side Probe Pads') = 'True'
Returns all pad objects that are members of the Top Side Probe Pads
Pad Class.
Not InPadClass('Bottom Side Probe Pads')
InPadClass('Bottom Side Probe Pads') = False
InPadClass('Bottom Side Probe Pads') = 'False'
Returns all objects except pad objects that are members of the Bottom Side Probe Pads
Pad Class.
Tips Copy Link Copied
- The single quote characters (') at the start and end of the
ClassName
string are mandatory.