-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathContainerObject.Async.cs
32 lines (28 loc) · 1.04 KB
/
ContainerObject.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
29
30
31
32
using System;
using System.Threading;
using System.Threading.Tasks;
namespace FastReport
{
/// <summary>
/// Container object that may contain child objects.
/// </summary>
public partial class ContainerObject : ReportComponentBase, IParent
{
#region Report engine
/// <inheritdoc/>
public override async Task GetDataAsync(CancellationToken cancellationToken)
{
await base.GetDataAsync(cancellationToken);
foreach (ReportComponentBase obj in Objects)
{
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);
}
}
#endregion
}
}