PdfRpt.FluentInterface.ColumnItemsTemplateBuilder.PdfTemplate C# (CSharp) Method

PdfTemplate() public method

Using an AcroForm or a simple pdf template file as the Cells template.
public PdfTemplate ( string pdfTemplatePath, Action onFillAcroForm ) : void
pdfTemplatePath string An AcroForm or a simple pdf template file's path. Only first page of the passed AcroForm makes sense here as a cell's template!
onFillAcroForm Action Gives you the Row's data and AcroForm to set form.SetField method. It can be null.
return void
        public void PdfTemplate(string pdfTemplatePath, Action<IList<CellData>, AcroFields, PdfStamper> onFillAcroForm)
        {
            _columnItemsTemplate = new PdfTemplateField { PdfTemplatePath = pdfTemplatePath, OnFillAcroForm = onFillAcroForm };
        }