HoleType
This document is no longer available beyond version 21. Information can now be found here: HoleType 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 pad objects whose Hole Type property complies with the Query.
Syntax Copy Link Copied
HoleType = HoleType_String
HoleType <> HoleType_String
HoleType_String
must be one of the strings from the following list:
'Round'
'Slot'
'Square'
Example Usage Copy Link Copied
HoleType = 'Square'
Returns all pad objects whose Hole Type property is Square
.
HoleType <> 'Slot'
Returns all objects except pad objects whose Hole Type property is Slot
.
HoleType = 'Square' || HoleType = 'Slot'
IsPad && HoleType <> 'Round'
Returns all objects except pad objects whose Hole Type property is Round.
Tips Copy Link Copied
- The Hole Type property is only defined for pad objects.
- The single quote characters (') at the start and end of
HoleType_String
are mandatory.