MonobjcMonobjc Documented Class Library
NSOutlineView..::..OutlineViewShouldTypeSelectForEventWithCurrentSearchStringEventHandler Delegate
NamespacesMonobjc.AppKitNSOutlineViewNSOutlineView..::..OutlineViewShouldTypeSelectForEventWithCurrentSearchStringEventHandler

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.

Declaration Syntax
C#Visual BasicVisual 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
)
Parameters
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.
Return Value
YES if type select should proceed, otherwise NO.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)