资源简介

城市道路交通专业设计中,绘制交通标线及导向箭头是机械重复的繁琐劳动,本程序可以使这一过程自动化。

欢迎交流,邮箱:zincum@yeah.net

资源截图

代码片段和文件信息

using Autodesk.AutoCAD.Runtime;
using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.Geometry;
using Autodesk.AutoCAD.EditorInput;
using System;
using System.Collections.Generic;
using System.Windows;

public class BiaoXian
{
    [CommandMethod(“BX“)]
    public static void BX()
    {
        Document doc = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument;
        Database db = doc.Database;
        using (Transaction tr = db.TransactionManager.StartTransaction())
        {
            BlockTable blockTbl = tr.Getobject(db.BlockTableId OpenMode.ForWrite) as BlockTable;
            BlockTableRecord modelSpace = tr.Getobject(blockTbl[BlockTableRecord.ModelSpace] OpenMode.ForWrite) as

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2020-01-24 10:24  bin\
     目录           0  2020-02-01 23:34  bin\Debug\
     文件        1810  2020-01-30 23:30  bin\Debug\acad.err
     文件      898008  2017-02-03 12:40  bin\Debug\accoremgd.dll
     文件      551384  2017-02-04 06:54  bin\Debug\AcCui.dll
     文件     6325720  2017-02-03 12:40  bin\Debug\acdbmgd.dll
     文件      379352  2017-02-04 06:54  bin\Debug\AcDx.dll
     文件      149976  2017-02-04 06:54  bin\Debug\AcDxPublishUi.dll
     文件     2489816  2017-02-03 12:46  bin\Debug\acmgd.dll
     文件      219608  2017-02-03 12:41  bin\Debug\AcMNUParser.dll
     文件      272856  2017-02-04 06:55  bin\Debug\AcMr.dll
     文件      147416  2017-02-03 12:41  bin\Debug\AcTcMgd.dll
     文件     3725784  2017-02-04 06:57  bin\Debug\AcWindows.dll
     文件       51672  2017-02-03 12:40  bin\Debug\AdUIMgd.dll
     文件      629208  2017-02-03 12:40  bin\Debug\AdUiPalettes.dll
     文件     2787800  2017-01-09 18:14  bin\Debug\AdWindows.dll
     文件     1103320  2017-02-03 12:39  bin\Debug\Autodesk.AutoCAD.Interop.Common.dll
     文件       22016  2020-02-27 18:11  bin\Debug\BX.dll
     文件       32256  2020-02-27 18:11  bin\Debug\BX.pdb
     目录           0  2020-01-24 10:24  bin\Debug\zh-CN\
     文件      257992  2017-02-16 00:42  bin\Debug\zh-CN\acdbmgd.resources.dll
     文件       99272  2017-02-16 00:42  bin\Debug\zh-CN\AcDx.resources.dll
     文件       75720  2017-02-16 00:42  bin\Debug\zh-CN\AcDxPublishUi.resources.dll
     文件       15304  2017-02-16 00:42  bin\Debug\zh-CN\AcMr.resources.dll
     文件     2501064  2017-02-16 00:42  bin\Debug\zh-CN\AcWindows.resources.dll
     文件     1599432  2017-02-16 00:43  bin\Debug\zh-CN\AdWindows.resources.dll
     目录           0  2019-12-15 10:32  bin\Release\
     文件       42163  2020-02-10 01:54  BX.cs
     目录           0  2020-01-24 10:24  obj\
     目录           0  2020-02-27 18:11  obj\Debug\
     文件       22016  2020-02-27 18:11  obj\Debug\BX.dll
............此处省略12个文件信息

评论

共有 条评论