MonobjcMonobjc Documented Class Library
NSBrowser..::..BrowserShouldShowCellExpansionForRowColumnEventHandler Delegate
NamespacesMonobjc.AppKitNSBrowserNSBrowser..::..BrowserShouldShowCellExpansionForRowColumnEventHandler

Invoked to allow the delegate to control cell expansion for a specific row and column.

Original signature is '- (BOOL)browser:(NSBrowser *)browser shouldShowCellExpansionForRow:(NSInteger)row column:(NSInteger)column'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate bool BrowserShouldShowCellExpansionForRowColumnEventHandler(
	NSBrowser browser,
	NSInteger row,
	NSInteger column
)
Public Delegate Function BrowserShouldShowCellExpansionForRowColumnEventHandler ( _
	browser As NSBrowser, _
	row As NSInteger, _
	column As NSInteger _
) As Boolean
public delegate bool BrowserShouldShowCellExpansionForRowColumnEventHandler(
	NSBrowser^ browser, 
	NSInteger row, 
	NSInteger column
)
Parameters
browser (NSBrowser)
The browser.
row (NSInteger)
The index of the row requesting an expansion tooltip.
column (NSInteger)
The index of the column containing the requesting row.
Return Value
YES to allow the cell expansion tooltip; NO to disallow it.
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)