WebLabel.cs 466 B

123456789101112131415161718
  1. using FastReport.Dialog;
  2. namespace FastReport.Web
  3. {
  4. public partial class Dialog
  5. {
  6. private string GetLabelHtml(LabelControl control)
  7. {
  8. return $"<div style=\"{GetLabelStyle(control)}\">{control.Text}</div>";
  9. }
  10. private string GetLabelStyle(LabelControl control)
  11. {
  12. return $"{GetStandardStyle(control)} {GetControlAlign(control)} white-space: pre-wrap;line-height: normal;";
  13. }
  14. }
  15. }