明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 953|回复: 3

求vb.net实例

[复制链接]
发表于 2010-12-21 15:04:35 | 显示全部楼层 |阅读模式
版主们,能否提供些关于vb.net的开发实例,供小弟学习学习,小弟在此先 谢谢了!
发表于 2010-12-21 15:12:06 | 显示全部楼层
开发手册里有很多的
官网的教程应该也有不少
http://www.adskconsulting.com/adn/cs/api_course_sched.php
 楼主| 发表于 2010-12-21 15:36:20 | 显示全部楼层
谢谢指点
发表于 2010-12-21 19:58:09 | 显示全部楼层
我也是刚学,简单画线和画圆
  1. public void LineCir()
  2.         {
  3.             Database db = HostApplicationServices.WorkingDatabase;
  4.             using (Transaction ta = db.TransactionManager.StartTransaction())
  5.             {
  6.                 BlockTable bt = (BlockTable)ta.GetObject(db.BlockTableId, OpenMode.ForRead);
  7.                 BlockTableRecord btr = (BlockTableRecord)ta.GetObject(bt[BlockTableRecord.ModelSpace], OpenMode.ForWrite);
  8.                 Line Lent = new Line(new Point3d(0, 0, 0), new Point3d(20, 10, 0));
  9.                 Circle Cent = new Circle(new Point3d(0, 0, 0), Vector3d.ZAxis, 5);
  10.                 btr.AppendEntity(Lent);
  11.                        btr.AppendEntity(Cent);
  12.                 ta.AddNewlyCreatedDBObject(Lent, true);
  13.                 ta.AddNewlyCreatedDBObject(Cent, true);
  14.                 ta.Commit();
  15.             }
  16.         }
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-26 00:57 , Processed in 0.179658 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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