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 each slide of template file when the PowerPointTemplate.BindData method is called. DataBindingProperties.MaxRowsPerSlide continues to import more rows of data as long as it can find a data marker with the 'continue' modifier.
DataBindingProperties.MaxRowsPerSlide is limited by the DataBindingProperties.MaxRowsToImport property.

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

Remarks

$body

MaxRows is a Read/Write property.

Examples

$body

C#
DataBindingProperties dbp = pptt.CreateDataBindingProperties();
dbp.MaxRowsPerSlide = 20;
pptt.BindData(valuesArray, colNamesArray, "DataSource", dbp);
pptt.Save(Page.Response, "output.pptx", false);
vb.net
Dim dbp As DataBindingProperties = pptt.CreateDataBindingProperties()
dbp.MaxRowsPerSlide = 20
pptt.BindData(valuesArray, colNamesArray, "DataSource", dbp)
pptt.Save(Page.Response, "output.pptx", False)
  • No labels