Message-ID: <1953465649.8665.1711654492900.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_8664_1194795357.1711654492900" ------=_Part_8664_1194795357.1711654492900 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html PowerPointTemplate.BindData(Object(), String(), String, PowerPoi= ntWriter.DataBindingProperties)

PowerPointTemplate.BindData(Object(), String(), String, PowerPointW= riter.DataBindingProperties)

Description

=20

Sets an array of objects as a template data source.

=20
C#
=20
=20
public void BindData(Object[] columnValues, String[], columnNames, String d=
ataSourceName, PowerPointWriter.DataBindingProperties bindingProperties)
=20
=20
vb.net
=20
Public Overridable Sub BindData(ByVal columnValues As Object[], ByVal colum=
nNames As String[], ByVal dataSourceName As String, ByVal bindingProperties=
 As DataBindingProperties
=20
=20

Parameters

=20
columnValues
An array of obj= ects to use as the data source.=20
columnNames
The names of the = columns to get from the data source.=20
dataSourceName
The name of= the data source.=20
bindingProperties
A Dat= aBindingProperties object.=20

Examples

=20
C#
=20
            string[] values =3D {"Hello World", "subtitle&qu=
ot;};
            string[] colNames =3D {"header", "subtitle"=
};
            DataBindingProperties DataProps =3D pptt.CreateDataBindingPrope=
rties();

            ppt.BindData(values, colNames, "DataSource1", DataPro=
ps);
=20
=20
vb.net
=20
        Dim values =3D New String() {"Hello World", "subtitl=
e"}
        Dim colNames =3D New String() {"header", "subtitle&q=
uot;}
        Dim DataProps As DataBindingProperites =3D pptt.CreateDataBindingPr=
operties();

        pptt.BindData(values, colNames, "DataSource1", DataProps)=
;
=20
------=_Part_8664_1194795357.1711654492900--