MonobjcMonobjc Documented Class Library
ReplaceObjectsInRangeWithObjectsFromArray Method (aRange, otherArray)
NamespacesMonobjc.FoundationNSMutableArrayReplaceObjectsInRangeWithObjectsFromArray(NSRange, NSArray)

Replaces the objects in the receiving array specified by a given range with all of the objects from a given array.

Original signature is '- (void)replaceObjectsInRange:(NSRange)aRange withObjectsFromArray:(NSArray *)otherArray'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void ReplaceObjectsInRangeWithObjectsFromArray(
	NSRange aRange,
	NSArray otherArray
)
Public Overridable Sub ReplaceObjectsInRangeWithObjectsFromArray ( _
	aRange As NSRange, _
	otherArray As NSArray _
)
public:
virtual void ReplaceObjectsInRangeWithObjectsFromArray(
	NSRange aRange, 
	NSArray^ otherArray
)
Parameters
aRange (NSRange)
The range of objects to replace in (or remove from) the receiving array.
otherArray (NSArray)
The array of objects from which to select replacements for the objects in aRange.
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)