Support Forum

Batch Add Widths to Paths?

Maxx

Monday 28th October 2024
I have many separate paths on a single layer. I am trying to give each a width of 10um. Selecting them all and changing their width properties to 10um only changes a single path. Is there a faster way to do this?
Jürgen
LayoutEditorFull
Monday 28th October 2024
The command ``` setWidth( width_in_databaseunits) ``` will set the width of all selected elements. You can enter it in the command line toolbar (press the TAB key when the main drawing has focus to see it, or make a right click on an empty tool bar area) or you call call the according command within a macro. The full macro command is: ``` layout->drawing->pathSelect(); layout->drawing->setWidth(10000); ```