------ #### SuperDesign V3.0.2412.2001 - *.[新增]新增程序更新日志设置和自动发布功能。 - *.[修复]修复Post数据格式不正确时双击文本框会导致软件闪退的BUG。
41 lines
877 B
C#
41 lines
877 B
C#
#region Using Directives
|
|
|
|
using System;
|
|
|
|
#endregion Using Directives
|
|
|
|
|
|
namespace ScintillaNET_FindReplaceDialog
|
|
{
|
|
/// <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,
|
|
}
|
|
}
|