MonobjcMonobjc Documented Class Library
NSTableView..::..TableViewShouldShowCellExpansionForTableColumnRowEventHandler Delegate
NamespacesMonobjc.AppKitNSTableViewNSTableView..::..TableViewShouldShowCellExpansionForTableColumnRowEventHandler

Invoked to allow the delegate to control cell expansion for a specific row and column.

Original signature is '- (BOOL)tableView:(NSTableView *)tableView shouldShowCellExpansionForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate bool TableViewShouldShowCellExpansionForTableColumnRowEventHandler(
	NSTableView tableView,
	NSTableColumn tableColumn,
	NSInteger row
)
Public Delegate Function TableViewShouldShowCellExpansionForTableColumnRowEventHandler ( _
	tableView As NSTableView, _
	tableColumn As NSTableColumn, _
	row As NSInteger _
) As Boolean
public delegate bool TableViewShouldShowCellExpansionForTableColumnRowEventHandler(
	NSTableView^ tableView, 
	NSTableColumn^ tableColumn, 
	NSInteger row
)
Parameters
tableView (NSTableView)
The table view that sent the message.
tableColumn (NSTableColumn)
The table column.
row (NSInteger)
The row index.
Return Value
YES if the tooltip cell should expand, 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)