.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Getting autocad applicatio n details
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
Could you please any one help me on below issue.
How i can retrieve the autocad application details like autocad file type like ( drawing file or dwt file) and file extension of active open autocad file using c#.
Regards,
Raman
Solved! Go to Solution.
Re: Getting autocad applicatio n details
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Check FileInfo property, e.g.:
using System.IO;
...................................
[CommandMethod("cfile")]
public static void CheckExtension()
{
FileInfo fi = new FileInfo(@"C:\Test\MyFile.dwg");
if (fi.Exists)
{
MessageBox.Show(fi.Extension);
}
}
~'J'~
C6309D9E0751D165D0934D0621DFF27919
Re: Getting autocad applicatio n details
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
yes, in this way we can get the file info.
But I need to get the autocad active file details , like type (dwg or dwt) of the autocad file either it is saved or not. and application name like (Autocad drawing file) or (Autocad template file)
using autocad APIs
Regards,
Raman
Re: Getting autocad applicatio n details
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
>> I need to get the autocad active file details
You find all properties of the current open file under this object:
Autodesk.AutoCAD.ApplicationServices.Application.D
There you have all "Document"-based infos and on hierarchie deeper:
Autodesk.AutoCAD.ApplicationServices.Application.D
you have all "Database"-relevant info (also .Filename for knowing about DWT or DWG)
Is there anything missing then?
- alfred -
Alfred NESWADBA
Ingenieur Studio HOLLAUS ... www.hollaus.at
-------------------------------------------------------------------------
Re: Getting autocad applicatio n details
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thanks for your post this issue.
But I am unable to get the details as you mentioned. Could you please help on this.
Regards,
Raman
Re: Getting autocad applicatio n details
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
>> But I am unable to get the details
At the moment I don't know what details you are looking for, what is "the details" for you? The only one you mentioned (I understood) is you want to know if a DWT or a DWG is opened.
For that check the extension (last three characters) of:
Autodesk.AutoCAD.ApplicationServices.Application.D
If you need any other properties (and you don't find them by Intellisense under the two statements in my previous post) then let us know what properties (exactly) you look for.
- alfred -
Alfred NESWADBA
Ingenieur Studio HOLLAUS ... www.hollaus.at
-------------------------------------------------------------------------
Re: Getting autocad applicatio n details
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thanks for your quick reply...
Apart from this file type, i would like to know what is the application name. like "autocad drawing" file.
why I need this data from application is same addin is going to install in inventor and micro station.
So, i need to show application type.
I think, you got my point.
Regards,
Raman
Re: Getting autocad applicatio n details
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
>> what is the application name. like "autocad drawing" file.
>> I think, you got my point.
Sorry, not any word, as I don't know how an application name could be "AutoCAD Drawing" or "AutoCAD Drawing File".
If you think about the caption of the application-window, then the property is called "Caption".
- alfred -
Alfred NESWADBA
Ingenieur Studio HOLLAUS ... www.hollaus.at
-------------------------------------------------------------------------
