Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Signature
C#
C#
 public void BindData(System.Collections.Generic.IEnumerable<T> sourcedataSource, System.String dataSourceName, DataBindingProperties property)
Signature
vb.net
vb.net
Public Sub BindData(ByVal source As System.Collections.Generic.IEnumerable(Of T), ByVal dataSourceName As String, ByVal [property] As DataBindingProperties)
Parameters
Param
sourcedataSourcesource
dataSource

The IEnumerable<T> collection to use as the data source.

...

Exception
SARuntimeException
SARuntimeException

BindData will throw this exception if the data source contains more rows than the worksheet can hold.
If there is more than one data marker referring to a data source and the data source is forward only, the exception will be thrown only if the source is larger than all bindings can hold.

Exception
ArgumentExceptionArgumentException
Remarks

You can set several data sources for a single template. Use the following methods to set template data sources: BindCellData, BindColumnData, BindRowData, and BindData.

...