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

Returns a whether the specified item should display the outline cell (the disclosure triangle).

Original signature is '- (BOOL)outlineView:(NSOutlineView *)outlineView shouldShowOutlineCellForItem:(id)item'

Available in Mac OS X v10.6 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate bool OutlineViewShouldShowOutlineCellForItemEventHandler(
	NSOutlineView outlineView,
	Id item
)
Public Delegate Function OutlineViewShouldShowOutlineCellForItemEventHandler ( _
	outlineView As NSOutlineView, _
	item As Id _
) As Boolean
public delegate bool OutlineViewShouldShowOutlineCellForItemEventHandler(
	NSOutlineView^ outlineView, 
	Id^ item
)
Parameters
outlineView (NSOutlineView)
The outline view that sent the message.
item (Id)
An item in the outline view.
Return Value
YES if the outline cell should be displayed, otherwise NO.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)

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