MonobjcMonobjc Documented Class Library
NSIndexPath Constructor (indexes, length)
NamespacesMonobjc.FoundationNSIndexPathNSIndexPath(IntPtr, NSUInteger)

Initializes an allocated NSIndexPath object with an index path of a specific length.

Original signature is '- (id)initWithIndexes:(NSUInteger *)indexes length:(NSUInteger)length'

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public NSIndexPath(
	IntPtr indexes,
	NSUInteger length
)
Public Sub New ( _
	indexes As IntPtr, _
	length As NSUInteger _
)
public:
NSIndexPath(
	IntPtr indexes, 
	NSUInteger length
)
Parameters
indexes (IntPtr)
Array of indexes to make up the index path.
length (NSUInteger)
Number of nodes to include in the index path.
Return Value
Initialized NSIndexPath object with indexes up to length.
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.Foundation (Module: Monobjc.Foundation)