-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathEnumerations.cs
64 lines (52 loc) · 1.29 KB
/
Enumerations.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
namespace Menees.Windows.Forms
{
#region Using Directives
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
#endregion
#region public FindMode
/// <summary>
/// The supported modes for <see cref="IFindTarget.Find"/>.
/// </summary>
public enum FindMode
{
/// <summary>
/// Shows an <see cref="IFindDialog"/>.
/// </summary>
ShowDialog,
/// <summary>
/// Finds the next instance or shows an <see cref="IFindDialog"/> if there is no <see cref="FindData.Text"/>.
/// </summary>
FindNext,
/// <summary>
/// Finds the previous instance or shows an <see cref="IFindDialog"/> if there is no <see cref="FindData.Text"/>.
/// </summary>
FindPrevious,
}
#endregion
#region public ListViewColumnType
/// <summary>
/// Defines the supported column types used in sorting.
/// </summary>
public enum ListViewColumnType
{
#pragma warning disable CA1720 // Identifier contains type name
/// <summary>
/// A string column.
/// </summary>
String,
#pragma warning restore CA1720 // Identifier contains type name
/// <summary>
/// A numeric column. This can be an integer or floating-point type.
/// </summary>
Number,
/// <summary>
/// A date/time column.
/// </summary>
DateTime,
}
#endregion
}