MonobjcMonobjc Documented Class Library
NSOutlineView..::..OutlineViewShouldTrackCellForTableColumnItemEventHandler Delegate
NamespacesMonobjc.AppKitNSOutlineViewNSOutlineView..::..OutlineViewShouldTrackCellForTableColumnItemEventHandler

Returns a Boolean value that indicates whether a given cell should be tracked.

Original signature is '- (BOOL)outlineView:(NSOutlineView *)outlineView shouldTrackCell:(NSCell *)cell forTableColumn:(NSTableColumn *)tableColumn item:(id)item'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate bool OutlineViewShouldTrackCellForTableColumnItemEventHandler(
	NSOutlineView outlineView,
	NSCell cell,
	NSTableColumn tableColumn,
	Id item
)
Public Delegate Function OutlineViewShouldTrackCellForTableColumnItemEventHandler ( _
	outlineView As NSOutlineView, _
	cell As NSCell, _
	tableColumn As NSTableColumn, _
	item As Id _
) As Boolean
public delegate bool OutlineViewShouldTrackCellForTableColumnItemEventHandler(
	NSOutlineView^ outlineView, 
	NSCell^ cell, 
	NSTableColumn^ tableColumn, 
	Id^ item
)
Parameters
outlineView (NSOutlineView)
The outline view that sent the message.
cell (NSCell)
The cell used to display item item in column tableColumn
tableColumn (NSTableColumn)
A table column in the outline view.
item (Id)
An item in the outline view.
Return Value
YES if the cell should be tracked for the item item in column tableColumn, otherwise NO.
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)