MonobjcMonobjc Documented Class Library
FrameOfCellAtColumnRow Method (columnIndex, rowIndex)
NamespacesMonobjc.AppKitNSTableViewFrameOfCellAtColumnRow(NSInteger, NSInteger)

Returns a rectangle locating the cell that lies at the intersection of columnIndex and rowIndex.

Original signature is '- (NSRect)frameOfCellAtColumn:(NSInteger)columnIndex row:(NSInteger)rowIndex'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual NSRect FrameOfCellAtColumnRow(
	NSInteger columnIndex,
	NSInteger rowIndex
)
Public Overridable Function FrameOfCellAtColumnRow ( _
	columnIndex As NSInteger, _
	rowIndex As NSInteger _
) As NSRect
public:
virtual NSRect FrameOfCellAtColumnRow(
	NSInteger columnIndex, 
	NSInteger rowIndex
)
Parameters
columnIndex (NSInteger)
The index of the column containing the cell whose rectangle you want.
rowIndex (NSInteger)
The index of the row containing the cell whose rectangle you want.
Return Value
A rectangle locating the cell that lies at the intersection of columnIndex and rowIndex. Returns NSZeroRect if columnIndex or rowIndex is greater than the number of columns or rows in 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)