MonobjcMonobjc Documented Class Library
SetAssociatedPointsAtIndex Method (points, index)
NamespacesMonobjc.AppKitNSBezierPathSetAssociatedPointsAtIndex(IntPtr, NSInteger)

Changes the points associated with the specified path element.

Original signature is '- (void)setAssociatedPoints:(NSPointArray)points atIndex:(NSInteger)index'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void SetAssociatedPointsAtIndex(
	IntPtr points,
	NSInteger index
)
Public Overridable Sub SetAssociatedPointsAtIndex ( _
	points As IntPtr, _
	index As NSInteger _
)
public:
virtual void SetAssociatedPointsAtIndex(
	IntPtr points, 
	NSInteger index
)
Parameters
points (IntPtr)
A C-style array containing up to three NSPoint data types. This parameter must contain the correct number of points for the path element at the specified index. Move, close path, and line segment commands require one point. Curve operations require three points.
index (NSInteger)
The index of the path element you want to modify.
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)