static public method TableRowExtensions.AddCell

Brief

Adds a cell with specified text, column and row span to the table row, allows configuring the cell and returns the TableCellBuilder.

Declaration
C#
Gehtsoft.PDFFlow.Builder.TableCellBuilder  AddCell (this Gehtsoft.PDFFlow.Builder.TableRowBuilder row, string text, int colSpan = 0, int rowSpan = 0, System.Action<Gehtsoft.PDFFlow.Builder.TableCellBuilder> cellConfigure = null)

Parameters
row

This TableRowBuilder.

text

The cell text.

colSpan

The column span.

rowSpan

The row span.

cellConfigure

A configuration action for the cell.

Declared in TableRowExtensions

back