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

Annotation() public method

Displaying current cell's data as an annotation.
public Annotation ( Func onPrintAnnotation ) : void
onPrintAnnotation Func Return an AnnotationFieldData based on the passed value, which is the actual row's fields values from TableDataSource and CalculatedFieldFormula. If you don't want to add the annotation, return null.
return void
        public void Annotation(Func<IList<CellData>, AnnotationFieldData> onPrintAnnotation)
        {
            _columnItemsTemplate = new AnnotationField { OnPrintAnnotation = onPrintAnnotation };
        }