PdfRpt.Core.Helper.TableHelper.SimpleTable C# (CSharp) Method

SimpleTable() public static method

Creates a simple PdfGrid.
public static SimpleTable ( int columnsNumber, IList pdfCellAttributesList ) : PdfGrid
columnsNumber int number of columns
pdfCellAttributesList IList PdfCells Attributes List
return PdfRpt.Core.Contracts.PdfGrid
        public static PdfGrid SimpleTable(int columnsNumber, IList<CellAttributes> pdfCellAttributesList)
        {
            return SimpleTable(columnsNumber, pdfCellAttributesList, BaseColor.WHITE);
        }

Same methods

TableHelper::SimpleTable ( int columnsNumber, IList pdfCellAttributesList, BaseColor nullRowBackgroundColor, bool showBorder = true ) : PdfGrid
TableHelper::SimpleTable ( int columnsNumber, IList pdfCellAttributesList, bool showBorder ) : PdfGrid