MonobjcMonobjc Documented Class Library
AddRowWithCells Method (newCells)
NamespacesMonobjc.AppKitNSMatrixAddRowWithCells(NSArray)

Adds a new row of cells below the last row, using the specified cells.

Original signature is '- (void)addRowWithCells:(NSArray *)newCells'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void AddRowWithCells(
	NSArray newCells
)
Public Overridable Sub AddRowWithCells ( _
	newCells As NSArray _
)
public:
virtual void AddRowWithCells(
	NSArray^ newCells
)
Parameters
newCells (NSArray)
An array of objects to use to fill the new row, starting with the object at index 0. Each object should be an instance of NSCell or one of its subclasses (usually NSActionCell). The array should contain a sufficient number of cells to fill the entire row. Extra cells are ignored, unless the matrix is empty. In that case, a matrix is created with one row and enough columns for all the elements of newCells.
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)