Indicates whether the specified point lies within one of the cells of the matrix and returns the location of the cell within which the point lies.
Original signature is '- (BOOL)getRow:(NSInteger *)row column:(NSInteger *)column forPoint:(NSPoint)aPoint'
Available in Mac OS X v10.0 and later.

C# | Visual Basic | Visual C++ |
Public Overridable Function GetRowColumnForPoint ( _ <OutAttribute> ByRef row As NSInteger, _ <OutAttribute> ByRef column As NSInteger, _ aPoint As NSPoint _ ) As Boolean
public: virtual bool GetRowColumnForPoint( [OutAttribute] NSInteger% row, [OutAttribute] NSInteger% column, NSPoint aPoint )

YES if the point lies within one of the cells in the receiver; NO if the point falls outside the bounds of the receiver or lies within an intercell spacing.

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