PdfRpt.Core.PdfTable.RowsManager.shouldSkipRow C# (CSharp) Method

shouldSkipRow() private method

private shouldSkipRow ( IList row ) : bool
row IList
return bool
        private bool shouldSkipRow(IList<CellData> row)
        {
            return SharedData.MainTableEvents != null &&
                SharedData.MainTableEvents.ShouldSkipRow(new EventsArguments
                {
                    PdfDoc = SharedData.PdfDoc,
                    PdfWriter = SharedData.PdfWriter,
                    Table = MainTable,
                    RowType = RowType.DataTableRow,
                    TableRowData = row,
                    ColumnCellsSummaryData = SharedData.ColumnCellsSummaryData,
                    PreviousTableRowData = _previousTableRowData,
                    PageSetup = SharedData.PageSetup,
                    PdfFont = SharedData.PdfFont,
                    PdfColumnsAttributes = SharedData.PdfColumnsAttributes
                });
        }