pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/FindReplace/FindOption.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

41 lines
859 B
C#

#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
/// <summary>
/// Controls find behavior for non-regular expression searches
/// </summary>
public enum FindOption
{
/// <summary>
/// Find must match the whole word
/// </summary>
WholeWord = 2,
/// <summary>
/// Find must match the case of the expression
/// </summary>
MatchCase = 4,
/// <summary>
/// Only match the _start of a word
/// </summary>
WordStart = 0x00100000,
/// <summary>
/// Not used in ScintillaNET
/// </summary>
RegularExpression = 0x00200000,
/// <summary>
/// Not used in ScintillaNET
/// </summary>
Posix = 0x00400000,
}
}