MonobjcMonobjc Documented Class Library
OutlineViewShouldEditTableColumnItem Method (outlineView, tableColumn, item)
NamespacesMonobjc.AppKitINSOutlineViewDelegateOutlineViewShouldEditTableColumnItem(NSOutlineView, NSTableColumn, Id)

Returns a Boolean value that indicates whether the outline view should allow editing of a given item in a given table column.

Original signature is '- (BOOL)outlineView:(NSOutlineView *)outlineView shouldEditTableColumn:(NSTableColumn *)tableColumn item:(id)item'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
bool OutlineViewShouldEditTableColumnItem(
	NSOutlineView outlineView,
	NSTableColumn tableColumn,
	Id item
)
Function OutlineViewShouldEditTableColumnItem ( _
	outlineView As NSOutlineView, _
	tableColumn As NSTableColumn, _
	item As Id _
) As Boolean
bool OutlineViewShouldEditTableColumnItem(
	NSOutlineView^ outlineView, 
	NSTableColumn^ tableColumn, 
	Id^ item
)
Parameters
outlineView (NSOutlineView)
MISSING
tableColumn (NSTableColumn)
MISSING
item (Id)
MISSING
Return Value
YES to permit outlineView to edit the cell specified by tableColumn and item, NO to deny permission. If this method returns YES, the cell may still not be editable—for example, if you have set up a custom NSTextFieldCell as a data cell, it must return YES for isEditable to allow editing.
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)