Page tree
Skip to end of metadata
Go to start of metadata

Overload

Description

BindRowData(Object(), String(), String, DataBindingProperties)

Sets an array of objects as a data source for a single row in a template.?  When binding an array horizontally, you must insert a datamarker for each element you want displayed.  

BindRowData(System.Collections.IDictionary, String, DataBindingProperties)

Sets a row's data source to an IDictionary. An IDictionary represents a collection of key-and-value pairs.  

When binding an IDictionary horizontally, you must insert a datamarker for each value you want displayed.

BindRowData(System.Collections.IEnumerable, String(), String, DataBindingProperties)

Sets a row's data source to an IEnumerable collection. The IEnumerable interface supports a simple iteration over a collection.
This method will return only one row of data for the column bound by the datamarker. You must insert a datamarker into the template for each column of data you want shown.

BindRowData(System.Data.DataSet, String, DataBindingProperties)

Sets a DataSet as a data source to bind to a row in the template.   This method will import only the first row of the first DataTable of the DataSet.   You must insert a datamarker into the template for each column of data you want shown.

BindRowData(System.Data.DataTable, String, DataBindingProperties)

Sets a DataTable as a data source to bind to a row in the template. This method will import only the first row of the DataTable.  You must insert a datamarker into the template for each column of data you want shown.

BindRowData(System.Data.DataView, String, DataBindingProperties)

Sets a DataView as a data source to bind to a row in the template.  This method will import only the first row of the DataView.  You must insert a datamarker into the template for each column of data you want shown.

SharePoint Integration Extension Methods

Overload

Description

BindRowData(Microsoft.SharePoint.SPView, Microsoft.SharePoint.SPList, String, DataBindingProperties)

Sets a SharePoint View as a data source for a single row in a template.

BindRowData(Microsoft.SharePoint.SPList, String, DataBindingProperties)

Sets a SharePoint List as a data source for a single row in a template.
  • No labels