PdfRpt.FluentInterface.MainTablePreferencesBuilder.SplitRows C# (CSharp) Method

SplitRows() public method

If true, splits rows that are forwarded to the next page but that still don't fit because the row height exceeds the available page height. Its default value is true.
public SplitRows ( bool split ) : void
split bool
return void
        public void SplitRows(bool split)
        {
            _pdfReport.DataBuilder.DefaultSplitRows(split);
        }