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.

C# | Visual Basic | Visual C++ |
bool OutlineViewShouldTrackCellForTableColumnItem( NSOutlineView outlineView, NSCell cell, NSTableColumn tableColumn, Id item )
Function OutlineViewShouldTrackCellForTableColumnItem ( _ outlineView As NSOutlineView, _ cell As NSCell, _ tableColumn As NSTableColumn, _ item As Id _ ) As Boolean
bool OutlineViewShouldTrackCellForTableColumnItem( NSOutlineView^ outlineView, NSCell^ cell, NSTableColumn^ tableColumn, Id^ item )

- 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.

YES if the cell should be tracked for the item item in column tableColumn, otherwise NO.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)