MonobjcMonobjc Documented Class Library
AddColumnWithCells Method (newCells)
NamespacesMonobjc.AppKitNSMatrixAddColumnWithCells(NSArray)

Adds a new column of cells to the right of the last column, using the given cells.

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

Available in Mac OS X v10.0 and later.

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