• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Active Contributor
    Posts: 43
    Registered: ‎03-06-2012
    Accepted Solution

    Export to .dwfx using .net API

    124 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.

    Please use plain text.
    Distinguished Contributor
    Posts: 105
    Registered: ‎12-29-2005

    Re: Export to .dwfx using .net API

    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.PlotSettingsValidator.Current;

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

    ...

    r,

    dennis

    Please use plain text.
    *Expert Elite*
    Hallex
    Posts: 1,335
    Registered: ‎10-08-2008

    Re: Export to .dwfx using .net API

    11-16-2012 08:07 AM in reply to: chockalingam

    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
    Please use plain text.