PdfRpt.FluentInterface.ColumnItemsTemplateBuilder.DisplayFormatFormula C# (CSharp) Метод

DisplayFormatFormula() публичный Метод

Fires before each cell of this column is being rendered as a string. Now you have time to manipulate the received object and apply your custom formatting function. It can be null.
public DisplayFormatFormula ( string>.Func formula ) : void
formula string>.Func
Результат void
        public void DisplayFormatFormula(Func<object, string> formula)
        {
            if (_columnItemsTemplate.BasicProperties == null)
                _columnItemsTemplate.BasicProperties = new CellBasicProperties();

            _columnItemsTemplate.BasicProperties.DisplayFormatFormula = formula;
        }