I’m using the Aspose.Words.Viewer of the lastest verison (3.5.0.0)… Noticed that now there is PrinterSettings property which returns a PrinterSettings object used that can be used when printing a document. I’m using this object for setting page range… However call to Renderer.Print() still prints all pages… What am I doing wrong? Here is the code snippet…
mPageNavigator.Renderer.PrinterSettings.FromPage = 1;
mPageNavigator.Renderer.PrinterSettings.ToPage = 1;
mPageNavigator.Renderer.Print();
Also is their way to hook up the dotnet PrintDialog control and pass the settings to the Viewer?
Thanks, Akash