-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathReportComponentCollection.cs
56 lines (50 loc) · 1.7 KB
/
ReportComponentCollection.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
47
48
49
50
51
52
53
54
55
56
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using FastReport.Utils;
namespace FastReport
{
/// <summary>
/// Holds the list of objects of <see cref="ReportComponentBase"/> type.
/// </summary>
public class ReportComponentCollection : FRCollectionBase
{
/// <summary>
/// Gets or sets the element at the specified index.
/// </summary>
/// <param name="index">Index of an element.</param>
/// <returns>The element at the specified index.</returns>
public ReportComponentBase this[int index]
{
get { return List[index] as ReportComponentBase; }
set { List[index] = value; }
}
internal ReportComponentCollection SortByTop()
{
ReportComponentCollection result = new ReportComponentCollection();
CopyTo(result);
result.InnerList.Sort(new TopComparer());
return result;
}
/// <summary>
/// Initializes a new instance of the <see cref="ReportComponentCollection"/> class with default settings.
/// </summary>
public ReportComponentCollection() : this(null)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="ReportComponentCollection"/> class with specified owner.
/// </summary>
public ReportComponentCollection(Base owner) : base(owner)
{
}
private class TopComparer : IComparer
{
public int Compare(object x, object y)
{
return (x as ReportComponentBase).Top.CompareTo((y as ReportComponentBase).Top);
}
}
}
}