Message 1 of 2
I am trying to export the AutoCAD text with model to 3D PDF file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all,
I am able to export the model in the 3D PDF file using the AutoCAD .NET api but the text is not visible in the exported pdf file. I looked for solution on the forum and get the text in the string format. I need the geometric data of the AutoCAD text so I can plot it accordingly in the exported PDF file.
For the text retrieval I have used the DBText but from that I am getting the string value of the text and no geometric extent.
DBText acText = (DBText)transaction.GetObject(objectId, OpenMode.ForRead);
Thank you in advance...