MonobjcMonobjc Documented Class Library
InsertRowWithCells Method (row, newCells)
NamespacesMonobjc.AppKitNSMatrixInsertRowWithCells(NSInteger, NSArray)

Inserts a new row of cells before the specified row, using the given cells.

Original signature is '- (void)insertRow:(NSInteger)row withCells:(NSArray *)newCells'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void InsertRowWithCells(
	NSInteger row,
	NSArray newCells
)
Public Overridable Sub InsertRowWithCells ( _
	row As NSInteger, _
	newCells As NSArray _
)
public:
virtual void InsertRowWithCells(
	NSInteger row, 
	NSArray^ newCells
)
Parameters
row (NSInteger)
The location at which to insert the new row.
newCells (NSArray)
An array of objects to use when filling the new row, starting with the object at index 0. Each object in newCells should be an instance of NSCell or one of its subclasses (usually NSActionCell).
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)