.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Set Plot Rotation Get Error.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I developed with c# based on autocad 2010.
My codes do batch plot.
If I change plot rotation with "psv.SetPlotRotation(ps, (PlotRotation)i);" at line 67, it give me error like:
Autodesk.AutoCAD.Runtime.Exception: eInvalidPlotInfo
Autodesk.AutoCAD.Runtime.Interop.Check(Int32 returnValue)
Autodesk.AutoCAD.PlottingServices.PlotEngine.Begin Page(PlotPageInfo pageInfo, PlotInfo plotInfo, Boolean lastPage, Object parameters)
zxy.BatchPlot.BatchPlotCommand()
Autodesk.AutoCAD.Runtime.CommandClass.InvokeWorker (MethodInfo mi, Object commandObject, Boolean bLispFunction)
Autodesk.AutoCAD.Runtime.CommandClass.InvokeWorker WithExceptionFilter(MethodInfo mi, Object commandObject, Boolean bLispFunction)
Autodesk.AutoCAD.Runtime.CommandClass.Invoke(Metho dInfo mi, Boolean bLispFunction)
Autodesk.AutoCAD.Runtime.CommandClass.CommandThunk .Invoke()
If I use same rotation every plot with "psv.SetPlotRotation(ps, (PlotRotation)0);" at line , it is fine.
Attachment contains codes, makefile and compiled dll. It is a rar file. But I have to rename it to txt file for post.
Thanks.
Re: Set Plot Rotation Get Error.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Plotrotation is an enum with 4 values. It looks like you could use an integer to specify the values as in:
0 = Degrees000
1 = Degrees090
2 = Degrees180
3 = Degrees270
VS2010 does not complain if you use "psv.SetPlotRotation(ps, 0)" so I am going to assume that will work to create a "non rotated" plot. But, there are only 4 potential values.
I don't understand what are you trying to do with "for (int i = 0; i < printcount; ++i)" and then "psv.SetPlotRotation(ps, (PlotRotation)i)". If your printcount is 20, plotrotation 20 will not work.
I have some batch plot routines but all plots are created at the same rotation (PlotRotation.Degrees000). There are times when we need to change this, but so far that has been accomplished on the print device itself.
Re: Set Plot Rotation Get Error.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thanks fieldguy.
In my sample code, I set "printcount = 2" just to change the plot rotation.
Reality, I will set plot rotation according to paper size.
You can try my dll and see the error.
Re: Set Plot Rotation Get Error.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hello,
From the code it appears that you are trying to create a multi-sheet DWF.
I have previously come across a similar issue while creating a multi-sheet PDF and the "eInvalidPlotInfo" exception being thrown. We have a request logged for this behavior with our engineering team.
To create a multi-sheet DWF/PDF, the publish API is better suited.
Here is a blog post on this topic :
Balaji
Developer Technical Services
Autodesk Developer Network
