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

KeepTogether() public method

If true, the table will be kept on one page if it fits, by forcing a new page if it doesn't fit on the current page.
public KeepTogether ( bool keep ) : void
keep bool
return void
        public void KeepTogether(bool keep)
        {
            _pdfReport.DataBuilder.DefaultKeepTogether(keep);
        }