-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathSort.cs
87 lines (79 loc) · 2.47 KB
/
Sort.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
using System;
using System.Collections.Generic;
using System.Text;
using FastReport.Utils;
namespace FastReport
{
/// <summary>
/// Represents a sort condition used in the <see cref="DataBand.Sort"/>.
/// </summary>
public class Sort : IFRSerializable
{
private string expression;
private bool descending;
/// <summary>
/// Gets or sets an expression used to sort data band rows.
/// </summary>
/// <remarks>
/// This property can contain any valid expression.
/// </remarks>
public string Expression
{
get { return expression; }
set { expression = value; }
}
/// <summary>
/// Gets or sets a value indicating that sort must be performed in descending order.
/// </summary>
public bool Descending
{
get { return descending; }
set { descending = value; }
}
/// <summary>
/// Serializes the class.
/// </summary>
/// <param name="writer">Writer object.</param>
/// <remarks>
/// This method is for internal use only.
/// </remarks>
public void Serialize(FRWriter writer)
{
writer.ItemName = "Sort";
writer.WriteStr("Expression", Expression);
if (Descending)
writer.WriteBool("Descending", Descending);
}
/// <summary>
/// Deserializes the class.
/// </summary>
/// <param name="reader">Reader object.</param>
/// <remarks>
/// This method is for internal use only.
/// </remarks>
public void Deserialize(FRReader reader)
{
reader.ReadProperties(this);
}
/// <summary>
/// Initializes a new instance of the <see cref="Sort"/> class with default settings.
/// </summary>
public Sort() : this("")
{
}
/// <summary>
/// Initializes a new instance of the <see cref="Sort"/> class with specified expression.
/// </summary>
public Sort(string expression) : this(expression, false)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="Sort"/> class with specified expression and sort order.
/// </summary>
public Sort(string expression, bool descending)
{
this.expression = expression;
this.descending = descending;
}
}
}