MonobjcMonobjc Documented Class Library
NSTextTableBlock Constructor (table, row, rowSpan, col, colSpan)
NamespacesMonobjc.AppKitNSTextTableBlockNSTextTableBlock(NSTextTable, NSInteger, NSInteger, NSInteger, NSInteger)

Returns an initialized text table block.

Original signature is '- (id)initWithTable:(NSTextTable *)table startingRow:(NSInteger)row rowSpan:(NSInteger)rowSpan startingColumn:(NSInteger)col columnSpan:(NSInteger)colSpan'

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public NSTextTableBlock(
	NSTextTable table,
	NSInteger row,
	NSInteger rowSpan,
	NSInteger col,
	NSInteger colSpan
)
Public Sub New ( _
	table As NSTextTable, _
	row As NSInteger, _
	rowSpan As NSInteger, _
	col As NSInteger, _
	colSpan As NSInteger _
)
public:
NSTextTableBlock(
	NSTextTable^ table, 
	NSInteger row, 
	NSInteger rowSpan, 
	NSInteger col, 
	NSInteger colSpan
)
Parameters
table (NSTextTable)
The text table containing this text table block.
row (NSInteger)
The table row at which the text table block starts.
rowSpan (NSInteger)
How many rows the text table block covers.
col (NSInteger)
The table column at which the text table block starts.
colSpan (NSInteger)
How many columns the text table block covers.
Return Value
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)