MonobjcMonobjc Documented Class Library
GetRowColumnForPoint Method (row, column, point)
NamespacesMonobjc.AppKitNSBrowserGetRowColumnForPoint(NSInteger%, NSInteger%, NSPoint)

Gets the row and column coordinates for the specified point, if a cell exists at that point.

Original signature is '- (BOOL)getRow:(NSInteger *)row column:(NSInteger *)column forPoint:(NSPoint)point'

Available in Mac OS X v10.6 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool GetRowColumnForPoint(
	out NSInteger row,
	out NSInteger column,
	NSPoint point
)
Public Overridable Function GetRowColumnForPoint ( _
	<OutAttribute> ByRef row As NSInteger, _
	<OutAttribute> ByRef column As NSInteger, _
	point As NSPoint _
) As Boolean
public:
virtual bool GetRowColumnForPoint(
	[OutAttribute] NSInteger% row, 
	[OutAttribute] NSInteger% column, 
	NSPoint point
)
Parameters
row (NSInteger%)
On output, the row number of the cell at the specified point, or -1 if there is no cell at the point.
column (NSInteger%)
On output, he column number of the cell at the specified point, or -1 if there is no cell at the point.
point (NSPoint)
The point to test.
Return Value
YES if a cell exists at the specified point; otherwise, NO.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)