Export to .dwfx using .net API

Export to .dwfx using .net API

chockalingam
Advocate Advocate
1,097 Views
2 Replies
Message 1 of 3

Export to .dwfx using .net API

chockalingam
Advocate
Advocate

Hi,

 I want to export .dwg file to .dwfx using .net api, can any one help me in solving this issue.

0 Likes
Accepted solutions (1)
1,098 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable
Accepted solution

Within your plot routine do something like this:

 

PlotSettings ps_base = (PlotSettings)t.GetObject(ObjectId_of_Layout, OpenMode.ForWrite);

PlotSettingsValidator psv = Autodesk.AutoCAD.DatabaseServices.PlotSettingsValidator.Current;

psv.SetPlotConfigurationName(ps_base, "DWFx ePlot (XPS Compatible).pc3", null);

...

r,

dennis

0 Likes
Message 3 of 3

Hallex
Advisor
Advisor

Try code written by Balaji Ram from there

 

http://forums.autodesk.com/t5/NET/How-to-use-Export-API-for-autocad-document-object/m-p/3618168/high...

 

just in case if you have DwgPreView installed

and also change file extension on what you need

_____________________________________
C6309D9E0751D165D0934D0621DFF27919
0 Likes