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

Invoked to allow the delegate to return a custom data cell for a specified row and column.

Original signature is '- (NSCell *)tableView:(NSTableView *)tableView dataCellForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate NSCell TableViewDataCellForTableColumnRowEventHandler(
	NSTableView tableView,
	NSTableColumn tableColumn,
	NSInteger row
)
Public Delegate Function TableViewDataCellForTableColumnRowEventHandler ( _
	tableView As NSTableView, _
	tableColumn As NSTableColumn, _
	row As NSInteger _
) As NSCell
public delegate NSCell^ TableViewDataCellForTableColumnRowEventHandler(
	NSTableView^ tableView, 
	NSTableColumn^ tableColumn, 
	NSInteger row
)
Parameters
tableView (NSTableView)
The table view that sent the message.
tableColumn (NSTableColumn)
The table column.
row (NSInteger)
The row index.
Return Value
An NSCell subclass that is used for the specified row and tableColumn. The returned cell must properly implement copyWithZone:.
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)