明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1953|回复: 0

求教:如何用C#编辑已存在的dxf文件?

[复制链接]
发表于 2004-12-20 15:12:00 | 显示全部楼层 |阅读模式
本帖最后由 作者 于 2004-12-20 17:23:04 编辑

各位高手: 我想用C#打开一个存在的dxf文件,并对其进行修改。当保存时却发生错误。请问如何解决?? 附代码如下: sing System;
using AutoCAD;
using System.IO;
namespace ConsoleApplication1
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
class Class1
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
AcadApplication a=new AcadApplicationClass();
a.Visible=true;
double[] start_point=new double[3];
double[] end_point=new double[3];
start_point[0]=10;start_point[1]=10;
end_point[0]=20;end_point[1]=30;
string name=@"F:\bl.dxf";
a.Documents.Open(name,false,null);
a.Documents.Application.ActiveDocument.Activate();
a.ActiveDocument.ModelSpace.AddLine(start_point,end_point);
a.Update();
if(a.ActiveDocument.Saved==false)
a.ActiveDocument.SaveAs(name,null,null); } }
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-27 22:31 , Processed in 0.151342 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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