明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2005|回复: 3

如何在VBA修改LINETYPE GENARATION的属性值!

[复制链接]
发表于 2003-11-24 17:33:00 | 显示全部楼层 |阅读模式
如何在VBA对选择的多段线修改LINETYPE GENARATION的属性值!
发表于 2003-11-24 20:07:00 | 显示全部楼层
LinetypeGeneration

Boolean; read-write

TRUE: Generates the linetype in a continuous pattern through the polyline vertices.

FALSE: Generates the linetype starting and ending with a dash at each polyline vertex.

Remarks

This property does not apply to polylines with tapered segments.



A polyline with linetype generation set to true (left) and set to false (right)

区别就在交点处吧,为True时是使用连续的线型,为False使用点做为开始和结束的分隔。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
 楼主| 发表于 2003-11-25 08:04:00 | 显示全部楼层
斑竹,可是我图中有一些多段线在LinetypeGeneration为DISNABLE时总是显示不正确,而我将LinetypeGeneration改成ENABLED,就能正确显示。
希望能够修改这属性来解决这问题。
谢谢!
发表于 2003-11-27 12:46:00 | 显示全部楼层

  1. Sub kkk()
  2. Dim acaddoc As AcadDocument
  3. Dim selectset1 As AcadSelectionSet
  4. Set acaddoc = ThisDrawing

  5. On Error Resume Next
  6. Set selectset1 = acaddoc.SelectionSets("kkk")
  7. If Err Then

  8. Set selectset1 = acaddoc.SelectionSets.Add("kkk")

  9. End If


  10. selectset1.SelectOnScreen
  11. Dim entry As AcadEntity


  12.     For Each entry In selectset1
  13.          If entry.ObjectName = "AcDbPolyline" Then
  14.             
  15.             entry.LinetypeGeneration = True

  16.     End If

  17.     Next entry

  18. selectset1.Clear


  19. End Sub






您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-28 13:30 , Processed in 0.140882 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表