-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathReport.Core.cs
46 lines (35 loc) · 958 Bytes
/
Report.Core.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using FastReport.Utils;
using System;
namespace FastReport
{
partial class Report
{
#region Private Methods
private void ClearPreparedPages()
{
if (preparedPages != null)
preparedPages.Clear();
}
/// <summary>
/// Does nothing
/// </summary>
/// <param name="writer"></param>
/// <param name="report"></param>
partial void SerializeDesign(FRWriter writer, Report report);
/// <summary>
/// Does nothing
/// </summary>
partial void InitDesign();
/// <summary>
/// Does nothing
/// </summary>
partial void ClearDesign();
/// <summary>
/// Does nothing
/// </summary>
partial void DisposeDesign();
partial void StartPerformanceCounter();
partial void StopPerformanceCounter();
#endregion Private Methods
}
}