C# Class PdfRpt.FluentInterface.InlineFieldBuilder

Defines how to display the current cell's data
ファイルを表示 Open project: VahidN/PdfReport Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
BasicProperties ( CellBasicProperties properties ) : void

Table's Cells Definitions. If you don't set this value, it will be filled by using current template's settings internally.

ConditionalFormatFormula ( Func formula ) : void

Defines the current cell's properties, based on the other cells values. Here IList contains actual row's cells values. It can be null.

DrawOnCell ( System cell ) : void

It will be called at the end of the cell's rendering.

RenderCell ( iTextSharp.text.pdf.PdfPCell>.Func cell ) : void

Custom cell's content template as a PdfPCell

Method Details

BasicProperties() public method

Table's Cells Definitions. If you don't set this value, it will be filled by using current template's settings internally.
public BasicProperties ( CellBasicProperties properties ) : void
properties PdfRpt.Core.Contracts.CellBasicProperties
return void

ConditionalFormatFormula() public method

Defines the current cell's properties, based on the other cells values. Here IList contains actual row's cells values. It can be null.
public ConditionalFormatFormula ( Func formula ) : void
formula Func
return void

DrawOnCell() public method

It will be called at the end of the cell's rendering.
public DrawOnCell ( System cell ) : void
cell System
return void

RenderCell() public method

Custom cell's content template as a PdfPCell
public RenderCell ( iTextSharp.text.pdf.PdfPCell>.Func cell ) : void
cell iTextSharp.text.pdf.PdfPCell>.Func
return void