My vsd file has multiple pages (sheets). With current Aspose.Diagram api I can export only default page into image.
drawing.Save(output, SaveFileFormat.PNG);
I found that I can get number of total pages using drawing.Pages.Count property, but I can't get anything except default page rendered. I tried to set
drawing.DocumentSettings.TopPage = page;but that doesn't work the way I expected.
Please advice.