<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to get layer data from  a .dwg file without opening CAD by API of Object in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065131#M31713</link>
    <description>&lt;P&gt;You have to have a cad session open, and .net api is always run from within that session.&lt;/P&gt;
&lt;P&gt;The C++ people can use "realdwg" to do this outside of a session, but you said .net, so....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will be doing something like this to get the database object of a dwg:&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;try&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; {&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;using&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; (AcDb.&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Database&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; db = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;new&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; AcDb.&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Database&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;false&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;, &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;true&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;)) {&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt; db.ReadDwgFile(origDwg, &lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;FileOpenMode&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;.OpenForReadAndAllShare, &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;true&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;, &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;null&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;); &lt;/FONT&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;//FileOpenMode.OpenForReadAndAllShare&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;....&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;then things like this to dig through that db for info, in my case app id count:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;try&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; {&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Transaction&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; tr = db.TransactionManager.StartTransaction();&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;using&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; (tr) {&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;//get app id count&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;RegAppTable&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; regapptbl = (&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;RegAppTable&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;)tr.GetObject(db.RegAppTableId, &lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;OpenMode&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;.ForRead);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;int&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; count = 0;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;foreach&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; (&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;ObjectId&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; id &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;in&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; regapptbl) { ++count; }&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;ParentInfo.ParAppIDCount = count;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you need to look up how to access layer info, as it will involve a different object than a regapptable, but the idea is the same.&lt;/P&gt;
&lt;P&gt;Hopefully this gets you started, but the code you want is already on this forum, just look a bit more.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 05 May 2017 17:49:15 GMT</pubDate>
    <dc:creator>JamesMaeding</dc:creator>
    <dc:date>2017-05-05T17:49:15Z</dc:date>
    <item>
      <title>How to get layer data from  a .dwg file without opening CAD by API of ObjectArx?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7060226#M31710</link>
      <description>&lt;P&gt;Is it possible to get data of entities in layer from dwg without openning cad by API of ObejcetArx?&lt;/P&gt;&lt;P&gt;if not ,is there &amp;nbsp;any way to realize it except for RealDWG,&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 02:25:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7060226#M31710</guid>
      <dc:creator>27925916</dc:creator>
      <dc:date>2017-05-04T02:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to get layer data from  a .dwg file without opening CAD by API of Object</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7060418#M31711</link>
      <description>&lt;P&gt;I mean by&amp;nbsp;&lt;SPAN&gt;.NET API..&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 05:41:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7060418#M31711</guid>
      <dc:creator>27925916</dc:creator>
      <dc:date>2017-05-04T05:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to get layer data from  a .dwg file without opening CAD by API of Object</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7061434#M31712</link>
      <description>&lt;P&gt;"without opening CAD" is a pretty vague term about your real requirement. Does it mean not starting/running AutoCAD, or running AutoCAD, but not opening drawing file in AutoCAD EDITOR?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Well, since you said "I mean by .NET API", I assume you mean AutoCAD .NET API, thus, you MUST run AutoCAD (be it regular AutoCAD or AutoCAD's core console. Thus your question becomes: does the drawing has to be opened in AutoCAD? Technically, yes, If you run code with AutoCAD .NET API to access data in a drawing file, the drawing file MUST be open by AutoCAD, either fully opened in AutoCAD editor visibly, or opened as side database without showing the graphics in Editor. With your brief description, you could do:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Run AutoCAD;&lt;/P&gt;
&lt;P&gt;2. Load your AutoCAD .NET API code&lt;/P&gt;
&lt;P&gt;3. Execute your code, which read drawing file as side database and access layer information&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since&amp;nbsp;AutoCAD does not have to process the drawing data for showing the graphics in AutoCAD Editor, reading data from side drawing database is a lot faster than doing the same work with drawing being opened visibly.&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 13:18:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7061434#M31712</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2017-05-04T13:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to get layer data from  a .dwg file without opening CAD by API of Object</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065131#M31713</link>
      <description>&lt;P&gt;You have to have a cad session open, and .net api is always run from within that session.&lt;/P&gt;
&lt;P&gt;The C++ people can use "realdwg" to do this outside of a session, but you said .net, so....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will be doing something like this to get the database object of a dwg:&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;try&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; {&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;using&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; (AcDb.&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Database&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; db = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;new&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; AcDb.&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Database&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;false&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;, &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;true&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;)) {&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt; db.ReadDwgFile(origDwg, &lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;FileOpenMode&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;.OpenForReadAndAllShare, &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;true&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;, &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;null&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;); &lt;/FONT&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;//FileOpenMode.OpenForReadAndAllShare&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;....&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;then things like this to dig through that db for info, in my case app id count:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;try&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; {&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Transaction&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; tr = db.TransactionManager.StartTransaction();&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;using&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; (tr) {&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;//get app id count&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;RegAppTable&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; regapptbl = (&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;RegAppTable&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;)tr.GetObject(db.RegAppTableId, &lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;OpenMode&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;.ForRead);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;int&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; count = 0;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;foreach&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; (&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;ObjectId&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; id &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;in&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; regapptbl) { ++count; }&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;ParentInfo.ParAppIDCount = count;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you need to look up how to access layer info, as it will involve a different object than a regapptable, but the idea is the same.&lt;/P&gt;
&lt;P&gt;Hopefully this gets you started, but the code you want is already on this forum, just look a bit more.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 17:49:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065131#M31713</guid>
      <dc:creator>JamesMaeding</dc:creator>
      <dc:date>2017-05-05T17:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to get layer data from  a .dwg file without opening CAD by API of Object</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065293#M31714</link>
      <description>&lt;P&gt;Last I heard, the RealDWG API can be used with C# as well as C++.&amp;nbsp; I don't have it so this is purely second-hand info...&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 18:48:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065293#M31714</guid>
      <dc:creator>dgorsman</dc:creator>
      <dc:date>2017-05-05T18:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to get layer data from  a .dwg file without opening CAD by API of Object</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065474#M31715</link>
      <description>AcDbMgd.dll is the managed layer of RealDWG, and is used both within AutoCAD, and with other RealDWG host applications.</description>
      <pubDate>Fri, 05 May 2017 20:01:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065474#M31715</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2017-05-05T20:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to get layer data from  a .dwg file without opening CAD by API of Object</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065544#M31716</link>
      <description>&lt;P&gt;so can you use realdwg in a c# app not run from an acad session?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know that the access to the db is the same once the db is read in, but you cannot read it in outside of acad, right?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I care about this because I catalog dwg info and might buy the realdwg seat if it could run outside acad from c#.&lt;/P&gt;
&lt;P&gt;thx&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 20:44:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065544#M31716</guid>
      <dc:creator>JamesMaeding</dc:creator>
      <dc:date>2017-05-05T20:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to get layer data from  a .dwg file without opening CAD by API of Object</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065697#M31717</link>
      <description>&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2007/10/au-handouts-the.html" target="_blank"&gt;http://through-the-interface.typepad.com/through_the_interface/2007/10/au-handouts-the.html&lt;/A&gt;</description>
      <pubDate>Fri, 05 May 2017 21:46:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065697#M31717</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2017-05-05T21:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to get layer data from  a .dwg file without opening CAD by API of Object</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065728#M31718</link>
      <description>&lt;P&gt;indeed, it does run from non acad c# app.&lt;/P&gt;
&lt;P&gt;The price is too high considering we already have enough cad seats for our users.&lt;/P&gt;
&lt;P&gt;It makes little sense that its not included with an acad purchase, as that costs more than the realdwg seats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 22:06:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7065728#M31718</guid>
      <dc:creator>JamesMaeding</dc:creator>
      <dc:date>2017-05-05T22:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to get layer data from  a .dwg file without opening CAD by API of Object</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7067048#M31719</link>
      <description>&lt;P&gt;thanks a lot ,but I mean reading dwg without open cad, if it is impossible to use .NET API without openning cad, then whether there is any way to read infomation of dwg without opening cad except for realdwg&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2017 05:27:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7067048#M31719</guid>
      <dc:creator>27925916</dc:creator>
      <dc:date>2017-05-07T05:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to get layer data from  a .dwg file without opening CAD by API of Object</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7067049#M31720</link>
      <description>&lt;P&gt;someone suguest me to use DwgDirect,I don't know if it is ok and free&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2017 05:30:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7067049#M31720</guid>
      <dc:creator>27925916</dc:creator>
      <dc:date>2017-05-07T05:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to get layer data from  a .dwg file without opening CAD by API of Object</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7070043#M31721</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;indeed, it does run from non acad c# app.&lt;/P&gt;
&lt;P&gt;The price is too high considering we already have enough cad seats for our users.&lt;/P&gt;
&lt;P&gt;It makes little sense that its not included with an acad purchase, as that costs more than the realdwg seats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It does make sense, after a fashion.&amp;nbsp; With some modest programming you could purchase a single AutoCAD license and then deploy your application to all the users, rather than requiring a license for every AutoCAD user.&amp;nbsp; The intent of the RealDWG license is for third-party developers who require access to DWG content but aren't necessarily already in a&amp;nbsp;"native" AutoCAD environment and therefore don't have AutoCAD licenses to work with.&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2017 19:13:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-get-layer-data-from-a-dwg-file-without-opening-cad-by-api/m-p/7070043#M31721</guid>
      <dc:creator>dgorsman</dc:creator>
      <dc:date>2017-05-08T19:13:13Z</dc:date>
    </item>
  </channel>
</rss>

