MonobjcMonobjc Documented Class Library
NSOutlineView..::..OutlineViewTypeSelectStringForTableColumnItemEventHandler Delegate
NamespacesMonobjc.AppKitNSOutlineViewNSOutlineView..::..OutlineViewTypeSelectStringForTableColumnItemEventHandler

Returns the string that is used for type selection for a given column and item.

Original signature is '- (NSString *)outlineView:(NSOutlineView *)outlineView typeSelectStringForTableColumn:(NSTableColumn *)tableColumn item:(id)item'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate NSString OutlineViewTypeSelectStringForTableColumnItemEventHandler(
	NSOutlineView outlineView,
	NSTableColumn tableColumn,
	Id item
)
Public Delegate Function OutlineViewTypeSelectStringForTableColumnItemEventHandler ( _
	outlineView As NSOutlineView, _
	tableColumn As NSTableColumn, _
	item As Id _
) As NSString
public delegate NSString^ OutlineViewTypeSelectStringForTableColumnItemEventHandler(
	NSOutlineView^ outlineView, 
	NSTableColumn^ tableColumn, 
	Id^ item
)
Parameters
outlineView (NSOutlineView)
The outline view that sent the message.
tableColumn (NSTableColumn)
A table column in the outline view.
item (Id)
An item in the outline view.
Return Value
The string that is used for type selection. You may want to change what is searched for based on what is displayed, or simply return nil for that row and/or column to not be searched
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)