mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
23 lines
358 B
C#
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
|
|
}
|
|
}
|