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
|
||
|
}
|
||
|
}
|