CPF/CPF.Mac/Mac/AppKit/NSTextFinderAction.cs
2023-11-21 23:05:03 +08:00

23 lines
358 B
C#

using CPF.Mac.ObjCRuntime;
namespace CPF.Mac.AppKit
{
[Lion]
public enum NSTextFinderAction : long
{
ShowFindInterface = 1L,
NextMatch,
PreviousMatch,
ReplaceAll,
Replace,
ReplaceAndFind,
SetSearchString,
ReplaceAllInSelection,
SelectAll,
SelectAllInSelection,
HideFindInterface,
ShowReplaceInterface,
HideReplaceInterface
}
}