Introduced in build 7.1.0.1855
Description
Sets a SharePoint View as a data source for a single row in a template.
C#
vb.net
Parameters
template
The current ExcelTemplate object which is calling BindRowDataview
SharePoint View to use as a data source for the templatelist
SharePoint List associated with the SharePoint ViewdataSourceName
Name of the data source in the templateproperties
The DataBindingProperties object which contains information about how the data should be bound to the template.property
Must be specified, but the DataBindingProperties
need not be set beforehand. To bind data to a template with the default DataBindingProperties
, pass in ExcelTemplate.CreateDataBindingProperties()
as the property
value. Otherwise, use the ExcelTemplate.CreateDataBindingProperties()
method to generate a new DataBindingProperties
object and set the DataBindingProperties.MaxRows, DataBindingProperties.Transpose, and/or DataBindingProperties.WorksheetName properties for the workbook.
Exceptions
ArgumentNullException
BindRowData
will throw this exception if null
(C#) or Nothing
(VB.NET) is passed to the method.