outlineView(_:shouldTypeSelectFor:withCurrentSearch:)
Returns a Boolean value that indicates whether type select should proceed for a given event and search string.
Declaration
@MainActor optional func outlineView(_ outlineView: NSOutlineView, shouldTypeSelectFor event: NSEvent, withCurrentSearch searchString: String?) -> BoolParameters
- outlineView:
The outline view that sent the message.
- event:
The event that caused the message to be sent.
- searchString:
The string for which searching is to proceed. The search string is
nilif no type select has begun.
Return Value
Discussion
Generally, this method will be called from keyDown(with:) and the event will be a key event.