MonobjcMonobjc Documented Class Library
OutlineViewChildOfItem Method (outlineView, index, item)
NamespacesMonobjc.AppKitINSOutlineViewDataSourceOutlineViewChildOfItem(NSOutlineView, NSInteger, Id)

Returns the child item at the specified index of a given item.

Original signature is '- (id)outlineView:(NSOutlineView *)outlineView child:(NSInteger)index ofItem:(id)item'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
Id OutlineViewChildOfItem(
	NSOutlineView outlineView,
	NSInteger index,
	Id item
)
Function OutlineViewChildOfItem ( _
	outlineView As NSOutlineView, _
	index As NSInteger, _
	item As Id _
) As Id
Id^ OutlineViewChildOfItem(
	NSOutlineView^ outlineView, 
	NSInteger index, 
	Id^ item
)
Parameters
outlineView (NSOutlineView)
The outline view that sent the message.
index (NSInteger)
The index of the child item from item to return.
item (Id)
An item in the data source.
Return Value
The child item at index of a item. If item is nil, returns the appropriate child item of the root object.
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)