-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathItem.cs
190 lines (163 loc) · 5.22 KB
/
Item.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#region using statements
using DataJuggler.Blazor.Components.Enumerations;
#endregion
namespace DataJuggler.Blazor.Components
{
#region class Item
/// <summary>
/// This class is used by the ComboBox to set the values
/// </summary>
public class Item
{
#region Private Variables
private string caption;
private int id;
private ImageAlignmentEnum imageAlignment;
private double imageHeight;
private string imageUrl;
private double imageWidth;
private bool includeImage;
private bool itemChecked;
private string name;
private string text;
#endregion
#region Constructors
#region Constructor
/// <summary>
/// Create a new instance of a 'Item' object.
/// </summary>
public Item()
{
}
#endregion
#region Constructor
/// <summary>
/// Create a new instance of a 'Item' object.
/// </summary>
public Item(int id, string name, string text)
{
// store args
Id = id;
Name = name;
Text = text;
}
#endregion
#endregion
#region Methods
#region ToString()
/// <summary>
/// method returns the Caption - Text
/// </summary>
public override string ToString()
{
// Aids in debugging
return Caption + " - " + Text;
}
#endregion
#endregion
#region Properties
#region Caption
/// <summary>
/// This property gets or sets the value for 'Caption'.
/// </summary>
public string Caption
{
get { return caption; }
set { caption = value; }
}
#endregion
#region Id
/// <summary>
/// This property gets or sets the value for 'Id'.
/// </summary>
public int Id
{
get { return id; }
set { id = value; }
}
#endregion
#region ImageAlignment
/// <summary>
/// This property gets or sets the value for 'ImageAlignment'.
/// </summary>
public ImageAlignmentEnum ImageAlignment
{
get { return imageAlignment; }
set { imageAlignment = value; }
}
#endregion
#region ImageHeight
/// <summary>
/// This property gets or sets the value for 'ImageHeight'.
/// </summary>
public double ImageHeight
{
get { return imageHeight; }
set { imageHeight = value; }
}
#endregion
#region ImageUrl
/// <summary>
/// This property gets or sets the value for 'ImageUrl'.
/// </summary>
public string ImageUrl
{
get { return imageUrl; }
set { imageUrl = value; }
}
#endregion
#region ImageWidth
/// <summary>
/// This property gets or sets the value for 'ImageWidth'.
/// </summary>
public double ImageWidth
{
get { return imageWidth; }
set { imageWidth = value; }
}
#endregion
#region IncludeImage
/// <summary>
/// This property gets or sets the value for 'IncludeImage'.
/// </summary>
public bool IncludeImage
{
get { return includeImage; }
set { includeImage = value; }
}
#endregion
#region ItemChecked
/// <summary>
/// This property gets or sets the value for 'ItemChecked'.
/// </summary>
public bool ItemChecked
{
get { return itemChecked; }
set { itemChecked = value; }
}
#endregion
#region Name
/// <summary>
/// This property gets or sets the value for 'Name'.
/// </summary>
public string Name
{
get { return name; }
set { name = value; }
}
#endregion
#region Text
/// <summary>
/// This property gets or sets the value for 'Text'.
/// </summary>
public string Text
{
get { return text; }
set { text = value; }
}
#endregion
#endregion
}
#endregion
}