MonobjcMonobjc Documented Class Library
PreparedCellAtColumnRow Method (column, row)
NamespacesMonobjc.AppKitNSTableViewPreparedCellAtColumnRow(NSInteger, NSInteger)

Returns the fully prepared cell that the receiver will use for drawing or processing of the specified row and column.

Original signature is '- (NSCell *)preparedCellAtColumn:(NSInteger)column row:(NSInteger)row'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual NSCell PreparedCellAtColumnRow(
	NSInteger column,
	NSInteger row
)
Public Overridable Function PreparedCellAtColumnRow ( _
	column As NSInteger, _
	row As NSInteger _
) As NSCell
public:
virtual NSCell^ PreparedCellAtColumnRow(
	NSInteger column, 
	NSInteger row
)
Parameters
column (NSInteger)
The column index for which to return the appropriate cell.
row (NSInteger)
The row index for which to return the appropriate cell.
Return Value
New NSCell subclass instance to use for the specified row and column. The value for the cell is correctly set, and the delegate method tableView:willDisplayCell:forTableColumn:row: will have been called.
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)