Invoked by the table view to return the data object associated with the specified row and column.
Original signature is '- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex'
Available in Mac OS X v10.0 and later.

C# | Visual Basic | Visual C++ |
Id TableViewObjectValueForTableColumnRow( NSTableView aTableView, NSTableColumn aTableColumn, NSInteger rowIndex )
Function TableViewObjectValueForTableColumnRow ( _ aTableView As NSTableView, _ aTableColumn As NSTableColumn, _ rowIndex As NSInteger _ ) As Id
Id^ TableViewObjectValueForTableColumnRow( NSTableView^ aTableView, NSTableColumn^ aTableColumn, NSInteger rowIndex )

- aTableView (NSTableView)
- The table view that sent the message.
- aTableColumn (NSTableColumn)
- A column in in aTableView.
- rowIndex (NSInteger)
- The row of the item in aTableColumn.

An item in the data source in the specified tableColumn of the view.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)