MonobjcMonobjc Documented Class Library
NSTableView..::..TableViewNextTypeSelectMatchFromRowToRowForStringEventHandler Delegate
NamespacesMonobjc.AppKitNSTableViewNSTableView..::..TableViewNextTypeSelectMatchFromRowToRowForStringEventHandler

Invoked to allow the delegate to allow the delegate to modify how type selection works.

Original signature is '- (NSInteger)tableView:(NSTableView *)tableView nextTypeSelectMatchFromRow:(NSInteger)startRow toRow:(NSInteger)endRow forString:(NSString *)searchString'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate NSInteger TableViewNextTypeSelectMatchFromRowToRowForStringEventHandler(
	NSTableView tableView,
	NSInteger startRow,
	NSInteger endRow,
	NSString searchString
)
Public Delegate Function TableViewNextTypeSelectMatchFromRowToRowForStringEventHandler ( _
	tableView As NSTableView, _
	startRow As NSInteger, _
	endRow As NSInteger, _
	searchString As NSString _
) As NSInteger
public delegate NSInteger TableViewNextTypeSelectMatchFromRowToRowForStringEventHandler(
	NSTableView^ tableView, 
	NSInteger startRow, 
	NSInteger endRow, 
	NSString^ searchString
)
Parameters
tableView (NSTableView)
The table view that sent the message.
startRow (NSInteger)
The starting row of the search range.
endRow (NSInteger)
The ending row of the search range.
searchString (NSString)
A string containing the typed selection.
Return Value
The first row in the range of startRow through endRow (excluding endRow itself) that matches selectionString. Return -1 if no match is found.
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)