MonobjcMonobjc Documented Class Library
TableViewShouldTrackCellForTableColumnRow Method (tableView, cell, tableColumn, row)
NamespacesMonobjc.AppKitINSTableViewDelegateTableViewShouldTrackCellForTableColumnRow(NSTableView, NSCell, NSTableColumn, NSInteger)

Invoked to allow the delegate to control the tracking behavior for a specific cell.

Original signature is '- (BOOL)tableView:(NSTableView *)tableView shouldTrackCell:(NSCell *)cell forTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
bool TableViewShouldTrackCellForTableColumnRow(
	NSTableView tableView,
	NSCell cell,
	NSTableColumn tableColumn,
	NSInteger row
)
Function TableViewShouldTrackCellForTableColumnRow ( _
	tableView As NSTableView, _
	cell As NSCell, _
	tableColumn As NSTableColumn, _
	row As NSInteger _
) As Boolean
bool TableViewShouldTrackCellForTableColumnRow(
	NSTableView^ tableView, 
	NSCell^ cell, 
	NSTableColumn^ tableColumn, 
	NSInteger row
)
Parameters
tableView (NSTableView)
The table view that sent the message.
cell (NSCell)
The cell to track.
tableColumn (NSTableColumn)
The table column.
row (NSInteger)
A row in tableView.
Return Value
YES if the cell should track, 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)