MonobjcMonobjc Documented Class Library
CellAtRowColumn Method (row, column)
NamespacesMonobjc.AppKitNSMatrixCellAtRowColumn(NSInteger, NSInteger)

Returns the cell at the specified row and column.

Original signature is '- (id)cellAtRow:(NSInteger)row column:(NSInteger)column'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual NSCell CellAtRowColumn(
	NSInteger row,
	NSInteger column
)
Public Overridable Function CellAtRowColumn ( _
	row As NSInteger, _
	column As NSInteger _
) As NSCell
public:
virtual NSCell^ CellAtRowColumn(
	NSInteger row, 
	NSInteger column
)
Parameters
row (NSInteger)
The number of the row containing the cell to return.
column (NSInteger)
The number of the column containing the cell to return.
Return Value
The NSCell object at the specified row and column location specified, or nil if either row or column is outside the bounds of the receiver.
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)