Line2D thickness
Line2D thickness
(OP)
Hi everyone
I have problem to try to set the Line2D thickness,
anyone have idea how to do that?
thanks!
I have problem to try to set the Line2D thickness,
anyone have idea how to do that?
thanks!
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: Line2D thickness
Set selection1 = DrawingDocument1.Selection
Selection1.Search "Name = Line.1" 'put the name of the line for which u want to change thickness'
Set vispropset1 = selection1.visproperties
vispropset1.setrealwidth 5,1
selection1.clear()
hope it works for u,
bye
Naveen
RE: Line2D thickness
Thanks for the tips, it worked very well
Thanks a lot !