Sets or returns an integer representing the position of the slide to which the data will be bound during an PowerPointTemplate.BindData method call.

 public Integer Slide{ get; set; }
Public Property Slide() As Integer

Slide is a Read/Write property.


          DataBindingProperties dbp = pptt.CreateDataBindingProperties();
          dbp.Slide = 1;
          pptt.BindData(valuesArray, colNamesArray, "DataSource", dbp);
          pptt.Save(Page.Response, "output.pptx", false);
        

          Dim dbp As DataBindingProperties = pptt.CreateDataBindingProperties()
          dbp.Slide = 1
          pptt.BindData(valuesArray, colNamesArray, "DataSource", dbp)
          pptt.Save(Page.Response, "output.pptx", False)