MonobjcMonobjc Documented Class Library
NSBrowser..::..BrowserShouldTypeSelectForEventWithCurrentSearchStringEventHandler Delegate
NamespacesMonobjc.AppKitNSBrowserNSBrowser..::..BrowserShouldTypeSelectForEventWithCurrentSearchStringEventHandler

Sent to the delegate to determine whether keyboard-based selection (type select) for a given event and search string should proceed.

Original signature is '- (BOOL)browser:(NSBrowser *)browser shouldTypeSelectForEvent:(NSEvent *)event withCurrentSearchString:(NSString *)searchString'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate bool BrowserShouldTypeSelectForEventWithCurrentSearchStringEventHandler(
	NSBrowser browser,
	NSEvent event,
	NSString searchString
)
Public Delegate Function BrowserShouldTypeSelectForEventWithCurrentSearchStringEventHandler ( _
	browser As NSBrowser, _
	event As NSEvent, _
	searchString As NSString _
) As Boolean
public delegate bool BrowserShouldTypeSelectForEventWithCurrentSearchStringEventHandler(
	NSBrowser^ browser, 
	NSEvent^ event, 
	NSString^ searchString
)
Parameters
browser (NSBrowser)
The browser.
event (NSEvent)
The keyboard event being processed.
searchString (NSString)
The keyboard-based selection string. It is nil when no keyboard-based selection has begun.
Return Value
YES to allow the selection; NO to disallow it.
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)