Edit

Share via


NSCursor Constructors

Definition

Overloads

NSCursor()
NSCursor(NSCoder)
NSCursor(NSObjectFlag)
NSCursor(IntPtr)
NSCursor(NSImage, CGPoint)
NSCursor(NSImage, NSColor, NSColor, CGPoint)

NSCursor()

[Foundation.Export("init")]
public NSCursor ();
Attributes

Applies to

NSCursor(NSCoder)

[Foundation.Export("initWithCoder:")]
[ObjCRuntime.DesignatedInitializer]
public NSCursor (Foundation.NSCoder coder);
new AppKit.NSCursor : Foundation.NSCoder -> AppKit.NSCursor

Parameters

coder
NSCoder
Attributes

Applies to

NSCursor(NSObjectFlag)

protected NSCursor (Foundation.NSObjectFlag t);
new AppKit.NSCursor : Foundation.NSObjectFlag -> AppKit.NSCursor

Parameters

Applies to

NSCursor(IntPtr)

protected internal NSCursor (IntPtr handle);
new AppKit.NSCursor : nativeint -> AppKit.NSCursor

Parameters

handle
IntPtr

nativeint

Applies to

NSCursor(NSImage, CGPoint)

[Foundation.Export("initWithImage:hotSpot:")]
[ObjCRuntime.DesignatedInitializer]
public NSCursor (AppKit.NSImage newImage, CoreGraphics.CGPoint aPoint);
new AppKit.NSCursor : AppKit.NSImage * CoreGraphics.CGPoint -> AppKit.NSCursor

Parameters

newImage
NSImage
aPoint
CGPoint
Attributes

Applies to

NSCursor(NSImage, NSColor, NSColor, CGPoint)

[Foundation.Export("initWithImage:foregroundColorHint:backgroundColorHint:hotSpot:")]
[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.MacOSX, 10, 12, ObjCRuntime.PlatformArchitecture.All, "Color hints are ignored. Use NSCursor (NSImage newImage, CGPoint aPoint) instead.")]
public NSCursor (AppKit.NSImage newImage, AppKit.NSColor fg, AppKit.NSColor bg, CoreGraphics.CGPoint hotSpot);
new AppKit.NSCursor : AppKit.NSImage * AppKit.NSColor * AppKit.NSColor * CoreGraphics.CGPoint -> AppKit.NSCursor

Parameters

newImage
NSImage
fg
NSColor
bg
NSColor
hotSpot
CGPoint
Attributes

Applies to