MonobjcMonobjc Documented Class Library
BrowserWillDisplayCellAtRowColumn Method (sender, cell, row, column)
NamespacesMonobjc.AppKitINSBrowserDelegateBrowserWillDisplayCellAtRowColumn(NSBrowser, Id, NSInteger, NSInteger)

Gives the delegate the opportunity to modify the specified cell at the given row and column location before the browser displays it.

Original signature is '- (void)browser:(NSBrowser *)sender willDisplayCell:(id)cell atRow:(NSInteger)row column:(NSInteger)column'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
void BrowserWillDisplayCellAtRowColumn(
	NSBrowser sender,
	Id cell,
	NSInteger row,
	NSInteger column
)
Sub BrowserWillDisplayCellAtRowColumn ( _
	sender As NSBrowser, _
	cell As Id, _
	row As NSInteger, _
	column As NSInteger _
)
void BrowserWillDisplayCellAtRowColumn(
	NSBrowser^ sender, 
	Id^ cell, 
	NSInteger row, 
	NSInteger column
)
Parameters
sender (NSBrowser)
The browser.
cell (Id)
The cell to be displayed.
row (NSInteger)
The row index of the cell to be displayed.
column (NSInteger)
The column index of the cell to be displayed.
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)