CPF/CPF.Mac/Mac/AppKit/NSTextFinderAction.cs

23 lines
358 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
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
}
}