.NET
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Export to .dwfx using .net API
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
123 Views, 2 Replies
11-16-2012 05:28 AM
Hi,
I want to export .dwg file to .dwfx using .net api, can any one help me in solving this issue.
Solved! Go to Solution.
Re: Export to .dwfx using .net API
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-16-2012 07:13 AM in reply to:
chockalingam
Within your plot routine do something like this:
PlotSettings ps_base = (PlotSettings)t.GetObject(ObjectId_of_Layout, OpenMode.ForWrite);
PlotSettingsValidator psv = Autodesk.AutoCAD.DatabaseServices.PlotSettingsVali
psv.SetPlotConfigurationName(ps_base, "DWFx ePlot (XPS Compatible).pc3", null);
...
r,
dennis
Re: Export to .dwfx using .net API
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-16-2012 08:07 AM in reply to:
chockalingam
Try code written by Balaji Ram from there
just in case if you have DwgPreView installed
and also change file extension on what you need
_____________________________________
C6309D9E0751D165D0934D0621DFF27919
C6309D9E0751D165D0934D0621DFF27919

