Message-ID: <1335837872.8569.1711650501010.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_8568_274919567.1711650501010" ------=_Part_8568_274919567.1711650501010 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html DataBindingProperties.Slide

DataBindingProperties.Slide

Description

Sets or returns an integer representing the position of the slide to= which the data will be bound during a=20 PowerPointTemplate.B= indData method call.=20 DataBindingProperties.Slide allows users to import different d= ata values onto slides that use the same data markers. The slide is specifi= ed using the 0-based index of the slide within the presentation.

DataBindingProperties.Slide defaults to -1 which indicates = that the data import is not scoped to a particular slide.

C#
=20
public Integer Slide{ get; set; }
=20
=20
vb.net
=20
Public Property Slide() As Integer
=20
=20

Remarks

=20 Slide is a=20 Read/Write property.=20

Examples

=20
C#
=20
          DataBindingProperties dbp =3D pptt.CreateDataBindingPr=
operties();
          dbp.Slide =3D 1;
          pptt.BindData(valuesArray, colNamesArray, "DataSource",=
 dbp);
          pptt.Save(Page.Response, "output.pptx", false);
        
=20
vb.net
=20
          Dim dbp As DataBindingProperties =3D pptt.CreateDataBi=
ndingProperties()
          dbp.Slide =3D 1
          pptt.BindData(valuesArray, colNamesArray, "DataSource",=
 dbp)
          pptt.Save(Page.Response, "output.pptx", False)
        
=20
------=_Part_8568_274919567.1711650501010--