AutoCAD 2010, Break Command in .NET

AutoCAD 2010, Break Command in .NET

Anonymous
Not applicable
681 Views
1 Reply
Message 1 of 2

AutoCAD 2010, Break Command in .NET

Anonymous
Not applicable
Hello,

Does anyone know where I find information on the Break Command and how I can go about executing it in the Transaction Manager?

Also, with:

Dim acLine As Line= New Line(New Point3d(Start), New Point3d(End))

It expects Start and End to be numeric values for (x,y,z).

What variation of this Command can be a single variable for (x,y,z) for both Start and End?

Sure would be great to get some information on both of these.

Hey THX!
Golfy
0 Likes
682 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
It's fairly obvious from your questions that you've never done any .NET
programming before and that you're not familiar with the API (the question
you're asking makes no sense).

If you're just starting out, that's fine, but you need to make that clear.

The Point3d type is what the constructor to the Line class expects.

--
http://www.caddzone.com

AcadXTabs: MDI Document Tabs for AutoCAD
Supporting AutoCAD 2000 through 2010

http://www.acadxtabs.com

Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");

wrote in message news:[email protected]...
Hello,

Does anyone know where I find information on the Break Command and how I can
go about executing it in the Transaction Manager?

Also, with:

Dim acLine As Line= New Line(New Point3d(Start), New Point3d(End))

It expects Start and End to be numeric values for (x,y,z).

What variation of this Command can be a single variable for (x,y,z) for both
Start and End?

Sure would be great to get some information on both of these.

Hey THX!
Golfy
0 Likes