Showing posts with label Query. Show all posts
Showing posts with label Query. Show all posts

Monday, June 13, 2022

Working with the Query Language in Altium Designer

Working with the Query Language in Altium Designer 22

Example: Schematic Query to Find Cross Reference Ports with no xRefs

IsPort And Not (HasParameter('CrossRef','*'))

That's it !

Monday, May 22, 2017

Find Dead Copper

Query to select all dead copper for deletion:

Modified Query - I added And NOT (Keepout = 'True')

(((((ObjectKind = 'Track') OR (ObjectKind = 'Arc')) And OnSignal)) Or IsVia) And NOT InAnyNet And Not InAnyComponent And NOT (Keepout = 'True')


Source Dennis Saputelli
https://forum.live.altium.com/#posts/221702/645693

That's it !