MonobjcMonobjc Documented Class Library
TableViewShouldSelectRow Method (aTableView, rowIndex)
NamespacesMonobjc.AppKitINSTableViewDelegateTableViewShouldSelectRow(NSTableView, NSInteger)

Returns whether the table view should allow selection of the specified row.

Original signature is '- (BOOL)tableView:(NSTableView *)aTableView shouldSelectRow:(NSInteger)rowIndex'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
bool TableViewShouldSelectRow(
	NSTableView aTableView,
	NSInteger rowIndex
)
Function TableViewShouldSelectRow ( _
	aTableView As NSTableView, _
	rowIndex As NSInteger _
) As Boolean
bool TableViewShouldSelectRow(
	NSTableView^ aTableView, 
	NSInteger rowIndex
)
Parameters
aTableView (NSTableView)
The table view that sent the message.
rowIndex (NSInteger)
The row index.
Return Value
YES to permit selection of the row, NO to deny selection.
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)