MonobjcMonobjc Documented Class Library
GetRowColumnOfCell Method (row, column, aCell)
NamespacesMonobjc.AppKitNSMatrixGetRowColumnOfCell(NSInteger%, NSInteger%, NSCell)

Searches the receiver for the specified cell and returns the row and column of the cell

Original signature is '- (BOOL)getRow:(NSInteger *)row column:(NSInteger *)column ofCell:(NSCell *)aCell'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool GetRowColumnOfCell(
	out NSInteger row,
	out NSInteger column,
	NSCell aCell
)
Public Overridable Function GetRowColumnOfCell ( _
	<OutAttribute> ByRef row As NSInteger, _
	<OutAttribute> ByRef column As NSInteger, _
	aCell As NSCell _
) As Boolean
public:
virtual bool GetRowColumnOfCell(
	[OutAttribute] NSInteger% row, 
	[OutAttribute] NSInteger% column, 
	NSCell^ aCell
)
Parameters
row (NSInteger%)
On return, the row in which the cell is located.
column (NSInteger%)
On return, the column in which the cell is located.
aCell (NSCell)
The cell to locate within the matrix.
Return Value
YES if the cell is one of the cells in the receiver, NO otherwise.
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)