Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

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

MaxRows is a Read/Write property.

Example

Code Block
csharp
csharp
titleC#


          DataBindingProperties dbp = pptt.CreateDataBindingProperties();
          dbp.MaxRowsPerSlide = 20;
          pptt.BindData(valuesArray, colNamesArray, "DataSource", dbp);
          pptt.Save(Page.Response, "output.pptx", false);
        
Code Block
vbnet
vbnet
titlevb.net


          Dim dbp As DataBindingProperties = pptt.CreateDataBindingProperties()
          dbp.MaxRowsPerSlide = 20
          pptt.BindData(valuesArray, colNamesArray, "DataSource", dbp)
          pptt.Save(Page.Response, "output.pptx", False)