Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns the maximum number of rows to be bound to the template file when the ExcelTemplate.BindData or ExcelTemplate.BindColumnData methods are called.

C#
public int MaxRows{ get; set; }
vb.net
Public Property MaxRows() As Integer

Remarks

Any rows in the data source after the MaxRows value will not be added to the template.

MaxRows is a Read/Write property.

Examples

C#
DataBindingProperties dbp = xlt.CreateDataBindingProperties();
dbp.MaxRows = 20;
xlt.BindData(twodim, names, "TwoDimArray", dbp);
xlt.Save(Page.Response, "output.xls", false);
vb.net
Dim dbp As DataBindingProperties = xlt.CreateDataBindingProperties()
dbp.MaxRows = 20
xlt.BindData(twodim, names, "TwoDimArray", dbp)
xlt.Save(Page.Response, "output.xls", False)
  • No labels