PdfRpt.Core.Helper.ExporterManager.ApplyExporter C# (CSharp) Method

ApplyExporter() public method

Calls exporter.OnRowAdded
public ApplyExporter ( IList finalRowDataList, LastRenderedRowData currentRowInfoData ) : void
finalRowDataList IList row's data
currentRowInfoData PdfRpt.Core.Contracts.LastRenderedRowData row's info
return void
        public void ApplyExporter(IList<CellData> finalRowDataList, LastRenderedRowData currentRowInfoData)
        {
            if (_sharedData.PageSetup.ExportSettings == null) return;
            foreach (var exporter in _sharedData.PageSetup.ExportSettings)
            {
                exporter.RowAdded(finalRowDataList, currentRowInfoData.IsNewGroupStarted);
            }
        }