Asks the delegate whether the browser may start an editing session for the specified item.
Original signature is '- (BOOL)browser:(NSBrowser *)browser shouldEditItem:(id)item'
Available in Mac OS X v10.6 and later.

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

Parameters
- browser (NSBrowser)
- The browser.
- item (Id)
- The item to edit.

Return Value
YES to allow the editing session to begin; NO to disallow it.

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