-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathBandBase.Async.cs
28 lines (25 loc) · 993 Bytes
/
BandBase.Async.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using FastReport.Utils;
using System.Threading.Tasks;
using System.Threading;
namespace FastReport
{
public abstract partial class BandBase
{
public override async Task GetDataAsync(CancellationToken cancellationToken)
{
await base.GetDataAsync(cancellationToken);
FRCollectionBase list = new FRCollectionBase();
Objects.CopyTo(list);
foreach (ReportComponentBase obj in list)
{
await obj.GetDataAsync(cancellationToken);
obj.OnAfterData();
// break the component if it is of BreakableComponent an has non-empty BreakTo property
if (obj is BreakableComponent && (obj as BreakableComponent).BreakTo != null &&
(obj as BreakableComponent).BreakTo.GetType() == obj.GetType())
(obj as BreakableComponent).Break((obj as BreakableComponent).BreakTo);
}
OnAfterData();
}
}
}