File tree Expand file tree Collapse file tree 5 files changed +34
-34
lines changed
src/Files.Core/Data/Enums Expand file tree Collapse file tree 5 files changed +34
-34
lines changed Original file line number Diff line number Diff line change 4
4
namespace Files . Core . Data . Enums
5
5
{
6
6
/// <summary>
7
- /// Defines constant that specifies the icon/height size in Columns layout.
7
+ /// Defines constants that specify the size in the Columns View layout.
8
8
/// </summary>
9
9
public enum ColumnsViewSizeKind
10
10
{
11
11
/// <summary>
12
- /// The icon/heigh is compact.
12
+ /// The size is compact.
13
13
/// </summary>
14
14
Compact = 1 ,
15
15
16
16
/// <summary>
17
- /// The icon/heigh is small.
17
+ /// The size is small.
18
18
/// </summary>
19
19
Small = 2 ,
20
20
21
21
/// <summary>
22
- /// The icon/heigh is medium.
22
+ /// The size is medium.
23
23
/// </summary>
24
24
Medium = 3 ,
25
25
26
26
/// <summary>
27
- /// The icon/heigh is large.
27
+ /// The size is large.
28
28
/// </summary>
29
29
Large = 4 ,
30
30
31
31
/// <summary>
32
- /// The icon/heigh is extra large.
32
+ /// The size is extra large.
33
33
/// </summary>
34
34
ExtraLarge = 5 ,
35
35
}
Original file line number Diff line number Diff line change 2
2
// Licensed under the MIT License. See the LICENSE.
3
3
4
4
namespace Files . Core . Data . Enums
5
- {
5
+ D
6
6
/// <summary>
7
- /// Defines constant that specifies the icon/height size in Details layout.
7
+ /// Defines constants that specify the size in the Details View layout.
8
8
/// </summary>
9
9
public enum DetailsViewSizeKind
10
10
{
11
11
/// <summary>
12
- /// The icon/heigh is compact.
12
+ /// The size is compact.
13
13
/// </summary>
14
14
Compact = 1 ,
15
15
16
16
/// <summary>
17
- /// The icon/heigh is small.
17
+ /// The size is small.
18
18
/// </summary>
19
19
Small = 2 ,
20
20
21
21
/// <summary>
22
- /// The icon/heigh is medium.
22
+ /// The size is medium.
23
23
/// </summary>
24
24
Medium = 3 ,
25
25
26
26
/// <summary>
27
- /// The icon/heigh is large.
27
+ /// The size is large.
28
28
/// </summary>
29
29
Large = 4 ,
30
30
31
31
/// <summary>
32
- /// The icon/heigh is extra large.
32
+ /// The size is extra large.
33
33
/// </summary>
34
34
ExtraLarge = 5 ,
35
35
}
Original file line number Diff line number Diff line change 4
4
namespace Files . Core . Data . Enums
5
5
{
6
6
/// <summary>
7
- /// Defines constant that specifies the icon/height size in Grid layout.
7
+ /// Defines constants that specify the size in the Grid View layout.
8
8
/// </summary>
9
9
public enum GridViewSizeKind
10
10
{
11
11
/// <summary>
12
- /// The icon/heigh is small.
12
+ /// The size is small.
13
13
/// </summary>
14
14
Small = 1 ,
15
15
16
16
/// <summary>
17
- /// The icon/heigh is medium.
17
+ /// The size is medium.
18
18
/// </summary>
19
19
Medium = 2 ,
20
20
21
21
/// <summary>
22
- /// The icon/heigh is medium+.
22
+ /// The size is medium+.
23
23
/// </summary>
24
24
Three = 3 ,
25
25
26
26
/// <summary>
27
- /// The icon/heigh is medium++.
27
+ /// The size is medium++.
28
28
/// </summary>
29
29
Four = 4 ,
30
30
31
31
/// <summary>
32
- /// The icon/heigh is medium+++.
32
+ /// The size is medium+++.
33
33
/// </summary>
34
34
Five = 5 ,
35
35
36
36
/// <summary>
37
- /// The icon/heigh is medium++++.
37
+ /// The size is medium++++.
38
38
/// </summary>
39
39
Six = 6 ,
40
40
41
41
/// <summary>
42
- /// The icon/heigh is medium+++++.
42
+ /// The size is medium+++++.
43
43
/// </summary>
44
44
Seven = 7 ,
45
45
46
46
/// <summary>
47
- /// The icon/heigh is large.
47
+ /// The size is large.
48
48
/// </summary>
49
49
Large = 8 ,
50
50
51
51
/// <summary>
52
- /// The icon/heigh is large+.
52
+ /// The size is large+.
53
53
/// </summary>
54
54
Nine = 9 ,
55
55
56
56
/// <summary>
57
- /// The icon/heigh is large++.
57
+ /// The size is large++.
58
58
/// </summary>
59
59
Ten = 10 ,
60
60
61
61
/// <summary>
62
- /// The icon/heigh is large+++.
62
+ /// The size is large+++.
63
63
/// </summary>
64
64
Eleven = 11 ,
65
65
66
66
/// <summary>
67
- /// The icon/heigh is extra large.
67
+ /// The size is extra large.
68
68
/// </summary>
69
69
ExtraLarge = 12 ,
70
70
}
Original file line number Diff line number Diff line change 4
4
namespace Files . Core . Data . Enums
5
5
{
6
6
/// <summary>
7
- /// Defines constant that specifies the icon/height size in List layout.
7
+ /// Defines constants that specify the size in the List View layout.
8
8
/// </summary>
9
9
public enum ListViewSizeKind
10
10
{
11
11
/// <summary>
12
- /// The icon/heigh is compact.
12
+ /// The size is compact.
13
13
/// </summary>
14
14
Compact = 1 ,
15
15
16
16
/// <summary>
17
- /// The icon/heigh is small.
17
+ /// The size is small.
18
18
/// </summary>
19
19
Small = 2 ,
20
20
21
21
/// <summary>
22
- /// The icon/heigh is medium.
22
+ /// The size is medium.
23
23
/// </summary>
24
24
Medium = 3 ,
25
25
26
26
/// <summary>
27
- /// The icon/heigh is large.
27
+ /// The size is large.
28
28
/// </summary>
29
29
Large = 4 ,
30
30
31
31
/// <summary>
32
- /// The icon/heigh is extra large.
32
+ /// The size is extra large.
33
33
/// </summary>
34
34
ExtraLarge = 5 ,
35
35
}
Original file line number Diff line number Diff line change 4
4
namespace Files . Core . Data . Enums
5
5
{
6
6
/// <summary>
7
- /// Defines constant that specifies the icon/height size in Tiles layout.
7
+ /// Defines constants that specify the size in the Tiles View layout.
8
8
/// </summary>
9
9
public enum TilesViewSizeKind
10
10
{
11
11
/// <summary>
12
- /// The icon/heigh is small.
12
+ /// The size is small.
13
13
/// </summary>
14
14
Small = 1 ,
15
15
}
You can’t perform that action at this time.
0 commit comments