TextKind
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 drill table, layer stack and text string (comment, designator, free) objects whose Text Kind property complies with the Query.
Syntax Copy Link Copied
TextKind = TextKind_String
TextKind <> TextKind_String
TextKind_String
must be one of the strings from the following list:
- 'BarCode Text'
- 'Stroke Font'
- 'TrueType Font'
Example Usage Copy Link Copied
TextKind = '
Stroke Font'
Returns all drill table, layer stack and text string (comment, designator, free) objects whose Text Kind property is Stroke Font.
TextKind <> '
BarCode Text'
Returns all objects except text string (comment, designator, free) objects whose Text Kind property is BarCode Text.
IsDesignator && TextKind
= 'TrueType Font'
Returns all drill table, layer stack and text string (comment, designator, free) objects whose Text Kind property is TrueType Font.
Tips Copy Link Copied
- The Text Kind property is only defined for drill table, layer stack and text string (comment, designator, free) objects.
- The single quote characters (') at the start and end of
TextKind_String
are mandatory.