WebReport.Blazor.cs 581 B

12345678910111213141516171819202122232425
  1. using System;
  2. using FastReport.Export;
  3. using FastReport.Web.Blazor.Components;
  4. using FastReport.Web.Blazor.Components.Internal.ExportSettings;
  5. namespace FastReport.Web
  6. {
  7. public partial class WebReport
  8. {
  9. internal bool EnableModalDialog { get; set; }
  10. internal Exports ExportType { get; set; }
  11. internal bool HasValidationError { get; set; } = false;
  12. internal ReportContainer Container { get; set; }
  13. internal void OnUpdate(bool needPrepare = false)
  14. {
  15. Container?.OnUpdate(needPrepare);
  16. }
  17. }
  18. }