InPadClass
Created: August 02, 2022 | Updated: August 02, 2022
| Applies to version: 4
This document is no longer available beyond version 4. Information can now be found here: InPadClass for version 5
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.