MonobjcMonobjc Documented Class Library
BrowserWillDisplayCellAtRowColumnMessage Method (sender, cell, row, column)
NamespacesMonobjc.AppKitNSBrowser..::..NSBrowserDelegateEventDispatcherBrowserWillDisplayCellAtRowColumnMessage(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++
public void BrowserWillDisplayCellAtRowColumnMessage(
	NSBrowser sender,
	Id cell,
	NSInteger row,
	NSInteger column
)
Public Sub BrowserWillDisplayCellAtRowColumnMessage ( _
	sender As NSBrowser, _
	cell As Id, _
	row As NSInteger, _
	column As NSInteger _
)
public:
void BrowserWillDisplayCellAtRowColumnMessage(
	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)