明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1409|回复: 2

[求助]画剖面线

[复制链接]
发表于 2009-2-11 20:37:00 | 显示全部楼层 |阅读模式
我打算学习画剖面线
   直线我是会的,但是箭头不知道怎么处理以及转角处的转折线不知道怎么画及转角处的标签字母如何写出?最好画完后能够对箭头、转角线及标签字母可以编辑??
   有没有人能提供一个大概的思路如何完成或者提供一段示例代码,非常感谢!!!!!
发表于 2009-2-13 08:40:00 | 显示全部楼层

这是VBA帮助里的,我改了一下,你自已看吧

Sub Example_AddLeader()
    ' This example creates a leader in model space.
    ' The leader is not attached to any annotation object
    ' in this example.
  
    Dim leaderObj As AcadLeader
    Dim points(0 To 8) As Double
    Dim leaderType As Integer
    Dim annotationObject As AcadObject
    Dim insertpt(2) As Double
    insertpt(0) = 15: insertpt(1) = 20: insertpt(2) = 0
    Set annotationObject = ThisDrawing.ModelSpace.AddMText(insertpt, 30, "例子")
    annotationObject.Height = 6
   
    points(0) = 0: points(1) = 0: points(2) = 0
    points(3) = 10: points(4) = 10: points(5) = 0
    points(6) = 20: points(7) = 10: points(8) = 0
    leaderType = acLineWithArrow
    'Set annotationObject = Nothing
       
    ' Create the leader object in model space
    Set leaderObj = ThisDrawing.ModelSpace.AddLeader(points, annotationObject, leaderType)
    ZoomAll
   
End Sub
 

发表于 2009-2-22 19:18:00 | 显示全部楼层

你想要的并不是剖面线,是剖切符号

带箭头的可以用多段线做

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

本版积分规则

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

GMT+8, 2024-11-26 05:47 , Processed in 0.158849 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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