StyleBase.Core.cs 291 B

1234567891011121314151617
  1. using FastReport.Utils;
  2. using System.Drawing;
  3. namespace FastReport
  4. {
  5. partial class StyleBase
  6. {
  7. #region Private Methods
  8. private Font GetDefaultFontInternal()
  9. {
  10. return DrawUtils.DefaultFont;
  11. }
  12. #endregion Private Methods
  13. }
  14. }