MonobjcMonobjc Documented Class Library
InsertColumnWithCells Method (column, newCells)
NamespacesMonobjc.AppKitNSMatrixInsertColumnWithCells(NSInteger, NSArray)

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

Original signature is '- (void)insertColumn:(NSInteger)column withCells:(NSArray *)newCells'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void InsertColumnWithCells(
	NSInteger column,
	NSArray newCells
)
Public Overridable Sub InsertColumnWithCells ( _
	column As NSInteger, _
	newCells As NSArray _
)
public:
virtual void InsertColumnWithCells(
	NSInteger column, 
	NSArray^ newCells
)
Parameters
column (NSInteger)
The column at which to insert the new cells.
newCells (NSArray)
An array of objects to use to fill the new column, starting with the object at index 0. Each object 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)