Returns a Boolean value that indicates whether type select should proceed for a given event and search string.
Original signature is '- (BOOL)outlineView:(NSOutlineView *)outlineView shouldTypeSelectForEvent:(NSEvent *)event withCurrentSearchString:(NSString *)searchString'
Available in Mac OS X v10.5 and later.

C# | Visual Basic | Visual C++ |
public delegate bool OutlineViewShouldTypeSelectForEventWithCurrentSearchStringEventHandler( NSOutlineView outlineView, NSEvent event, NSString searchString )
Public Delegate Function OutlineViewShouldTypeSelectForEventWithCurrentSearchStringEventHandler ( _ outlineView As NSOutlineView, _ event As NSEvent, _ searchString As NSString _ ) As Boolean
public delegate bool OutlineViewShouldTypeSelectForEventWithCurrentSearchStringEventHandler( NSOutlineView^ outlineView, NSEvent^ event, NSString^ searchString )

- outlineView (NSOutlineView)
- The outline view that sent the message.
- event (NSEvent)
- The event that caused the message to be sent.
- searchString (NSString)
- The string for which searching is to proceed. The search string is nil if no type select has begun.

YES if type select should proceed, otherwise NO.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)