Worksheet to pdf

I have a workbook with several worksheets within.

I can print the entire workbook to pdf (used aspose example below) .

I would like to print sheet 2 only. Can/How this be done?

wb.Save("d:\\MySpreadsheet.xml", FileFormatType.AsposePdf);

Aspose.Pdf.Pdf pdf1 = new Aspose.Pdf.Pdf();

pdf1.BindXML("d:\\MySpreadsheet.xml", null);

pdf1.Save("d:\\MySpreadsheet.pdf");

Hi,

I think you can try to hide undesired worksheets before saving to pdf integrated xml file E.g.,

wb.Worksheets[0].IsVisible = false;

Thank you.