MonobjcMonobjc Documented Class Library
OutlineViewNextTypeSelectMatchFromItemToItemForString Method (outlineView, startItem, endItem, searchString)
NamespacesMonobjc.AppKitINSOutlineViewDelegateOutlineViewNextTypeSelectMatchFromItemToItemForString(NSOutlineView, Id, Id, NSString)

Returns the first item that matches the searchString from within the range of startItem to endItem

Original signature is '- (id)outlineView:(NSOutlineView *)outlineView nextTypeSelectMatchFromItem:(id)startItem toItem:(id)endItem forString:(NSString *)searchString'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
Id OutlineViewNextTypeSelectMatchFromItemToItemForString(
	NSOutlineView outlineView,
	Id startItem,
	Id endItem,
	NSString searchString
)
Function OutlineViewNextTypeSelectMatchFromItemToItemForString ( _
	outlineView As NSOutlineView, _
	startItem As Id, _
	endItem As Id, _
	searchString As NSString _
) As Id
Id^ OutlineViewNextTypeSelectMatchFromItemToItemForString(
	NSOutlineView^ outlineView, 
	Id^ startItem, 
	Id^ endItem, 
	NSString^ searchString
)
Parameters
outlineView (NSOutlineView)
The outline view that sent the message.
startItem (Id)
The first item to search.
endItem (Id)
The item before which to stop searching. It is possible for endItem to be less than startItem if the search will wrap.
searchString (NSString)
The string for which to search.
Return Value
The first item—from within the range of startItem to endItem—that matches the searchString, or nil if there is no match.
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)