Description
Sets an IEnumerable as a data source to bind to template data markers.
C#
vb.net
Parameters
dataSource
The IEnumerable collection to use as the data source.dataSourceName
The name of the set of data markers at which to insert the values imported from the data source. Note:dataSourceName
does not include a data marker's column name, for example, the dataSourceName
for %%=Products.ProductID
is "Products."
property
The DataBindingProperties object which contains information about how the data should be bound to the template. To bind data to a template with the defaultDataBindingProperties
, pass in PowerPointTemplate.CreateDataBindingProperties()
as the property
value.
Exceptions
ArgumentNullException
BindData
will throw this exception if null
(C#) or Nothing
(VB.NET) is passed to the method.
Examples
C#
vb.net