Lineweights in Version14?

Lineweights in Version14?

Anonymous
Not applicable
112 Views
2 Replies
Message 1 of 3

Lineweights in Version14?

Anonymous
Not applicable
I have been writing some vba scripts in AutoCAD2000. In particular creating
blocks composed of polylines. I change the lineweight of some of these
polylines and set the LWDISPLAY variable in order to see them.

I use
blockObj.Item(0).Lineweight =acLnWt005
blockObj.Item(1).Lineweight =acLnWt090
etc

I would like to use to be able to produce the same results in AutoCAD14 but
have failed to draw polylines with particular lineweights. Also, there does
not appear to be a LWDISPLAY variable.

Is this possible in AutoCAD14?

Any help greatly appreciated

Claire
0 Likes
113 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable
Visible lineweights is an A2K feature and does not exist in R14 (at least
not on the screen). In fact, polylines were the only entity allowed to have
linewights in R14. You'll need to use the SetWidth method (I don't know if
it exists in R14) to change the appearance of your polylines.

--
Visit me at http://www2.stonemedia.com/franko

"Claire Newell" wrote in message
news:ef060e2.-1@WebX.SaUCah8kaAW...
> I have been writing some vba scripts in AutoCAD2000. In particular
creating
> blocks composed of polylines. I change the lineweight of some of these
> polylines and set the LWDISPLAY variable in order to see them.
>
> I use
> blockObj.Item(0).Lineweight =acLnWt005
> blockObj.Item(1).Lineweight =acLnWt090
> etc
>
> I would like to use to be able to produce the same results in AutoCAD14
but
> have failed to draw polylines with particular lineweights. Also, there
does
> not appear to be a LWDISPLAY variable.
>
> Is this possible in AutoCAD14?
>
> Any help greatly appreciated
>
> Claire
>
0 Likes
Message 3 of 3

Anonymous
Not applicable
Lineweights are a new feature in AC2K. Polylines, in R14 and below, have a
width property, but that isn't the same as lineweights when it comes to
plotting.

--
R. Robert Bell, MCSE
Network Administrator (or, Modern-day Wizard)

Claire Newell wrote in message
news:ef060e2.-1@WebX.SaUCah8kaAW...
| I have been writing some vba scripts in AutoCAD2000. In particular
creating
| blocks composed of polylines. I change the lineweight of some of these
| polylines and set the LWDISPLAY variable in order to see them.
|
| I use
| blockObj.Item(0).Lineweight =acLnWt005
| blockObj.Item(1).Lineweight =acLnWt090
| etc
|
| I would like to use to be able to produce the same results in AutoCAD14
but
| have failed to draw polylines with particular lineweights. Also, there
does
| not appear to be a LWDISPLAY variable.
|
| Is this possible in AutoCAD14?
|
| Any help greatly appreciated
|
| Claire
|
0 Likes