MonobjcMonobjc Documented Class Library
ShouldFocusCellAtColumnRow Method (cell, column, row)
NamespacesMonobjc.AppKitNSTableViewShouldFocusCellAtColumnRow(NSCell, NSInteger, NSInteger)

Returns whether the fully cell at the specified row and column can be made the focused cell or not.

Original signature is '- (BOOL)shouldFocusCell:(NSCell *)cell atColumn:(NSInteger)column row:(NSInteger)row'

Available in Mac OS X v10.6 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool ShouldFocusCellAtColumnRow(
	NSCell cell,
	NSInteger column,
	NSInteger row
)
Public Overridable Function ShouldFocusCellAtColumnRow ( _
	cell As NSCell, _
	column As NSInteger, _
	row As NSInteger _
) As Boolean
public:
virtual bool ShouldFocusCellAtColumnRow(
	NSCell^ cell, 
	NSInteger column, 
	NSInteger row
)
Parameters
cell (NSCell)
The prepared cell to be focused upon.
column (NSInteger)
The column of the cell.
row (NSInteger)
The row of the cell.
Return Value
YES if the cell can be made the focused cell, otherwise NO.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)

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