using FastReport.Dialog; namespace FastReport.Web { public partial class Dialog { private string GetLabelHtml(LabelControl control) { return $"
{control.Text}
"; } private string GetLabelStyle(LabelControl control) { return $"{GetStandardStyle(control)} {GetControlAlign(control)} white-space: pre-wrap;line-height: normal;"; } } }