Python scripting: creating a list of vias

To get a list of tracks in a board I do this:
for trk in myBoard.GetTracks():
trackList.append(trk)

How do I do this for vias? Couldn’t find a ‘GetVias()’ method?

Vias are tracks and are included in GetTracks(). Check if a track is a via with GetClass()

2 Likes

Thanks, works great.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.