Example #1
0
 public static void SetPptSlideSize()
 {
     string name      = "setPptSlideSize.pptx";
     string password  = null;
     string storage   = null;
     string folder    = "input";
     int?   width     = 800;
     int?   height    = 600;
     string sizeType  = null; //Available values : OnScreen, LetterPaper, A4Paper, Slide35mm, Overhead, Banner, Custom, Ledger, A3Paper, B4IsoPaper, B5IsoPaper, B4JisPaper, B5JisPaper, HagakiCard, OnScreen16x9, OnScreen16x10
     string scaleType = null; //Available values : DoNotScale, EnsureFit, Maximize; Default value : DoNotScale
     var    response  = documentApi.SetPptSlideSize(name, password, storage, folder, width, height, sizeType, scaleType);
 }