public static void SplitPpt() { string name = "splitPpt.pptx"; ExportOptions options = null; string format = SlideExportFormat.Svg.ToString(); // JPEG PNG GIF BMP PPTX PPSX PPT PPS ODP PDF XPS PS PCL SVG int? width = 400; int? height = 300; int? from = 3; int? to = 6; string destFolder = "output"; string password = null; string storage = null; string folder = "input"; var response = documentApi.SplitPpt(name, options, format, width, height, to, from, destFolder, password, storage, folder); }