CellularTextObject.Core.cs 312 B

12345678910111213
  1. using FastReport.Utils;
  2. using System;
  3. namespace FastReport
  4. {
  5. partial class CellularTextObject
  6. {
  7. private float GetCellWidthInternal(float fontHeight)
  8. {
  9. return (int)Math.Round((fontHeight + 10) / (0.25f * Units.Centimeters)) * (0.25f * Units.Centimeters);
  10. }
  11. }
  12. }