MonobjcMonobjc Documented Class Library
TableViewShouldTypeSelectForEventWithCurrentSearchString Method (tableView, event, searchString)
NamespacesMonobjc.AppKitINSTableViewDelegateTableViewShouldTypeSelectForEventWithCurrentSearchString(NSTableView, NSEvent, NSString)

Invoked to allow the delegate to control type select for a specific event.

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

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
bool TableViewShouldTypeSelectForEventWithCurrentSearchString(
	NSTableView tableView,
	NSEvent event,
	NSString searchString
)
Function TableViewShouldTypeSelectForEventWithCurrentSearchString ( _
	tableView As NSTableView, _
	event As NSEvent, _
	searchString As NSString _
) As Boolean
bool TableViewShouldTypeSelectForEventWithCurrentSearchString(
	NSTableView^ tableView, 
	NSEvent^ event, 
	NSString^ searchString
)
Parameters
tableView (NSTableView)
The table view that sent the message.
event (NSEvent)
The event.
searchString (NSString)
The search string or nil if no type select has began.
Return Value
YES to allow type select for event, NO otherwise.
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)