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