Asks the delegate whether the specified item is a leaf item (an item that cannot be expanded).
Original signature is '- (BOOL)browser:(NSBrowser *)browser isLeafItem:(id)item'
Available in Mac OS X v10.6 and later.

Declaration Syntax
public delegate bool BrowserIsLeafItemEventHandler(
NSBrowser browser,
Id item
)
Public Delegate Function BrowserIsLeafItemEventHandler ( _
browser As NSBrowser, _
item As Id _
) As Boolean
public delegate bool BrowserIsLeafItemEventHandler(
NSBrowser^ browser,
Id^ item
)

Parameters
- browser (NSBrowser)
- The browser.
- item (Id)
- The item to be checked.

Return Value
YES if the specified item is a leaf item; otherwise, NO.

Version Information
- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)
Assembly:
Monobjc.AppKit (Module: Monobjc.AppKit)