12345678910111213141516171819202122232425 |
- using System;
- using FastReport.Export;
- using FastReport.Web.Blazor.Components;
- using FastReport.Web.Blazor.Components.Internal.ExportSettings;
- namespace FastReport.Web
- {
-
- public partial class WebReport
- {
- internal bool EnableModalDialog { get; set; }
- internal Exports ExportType { get; set; }
- internal bool HasValidationError { get; set; } = false;
- internal ReportContainer Container { get; set; }
- internal void OnUpdate(bool needPrepare = false)
- {
- Container?.OnUpdate(needPrepare);
- }
- }
- }
|