Edit

SKCanvasView Constructors

Definition

Overloads

Name Description
SKCanvasView()

Initializes a new instance of the SKCanvasView class.

SKCanvasView(CGRect)

Initializes the SKCanvasView with the specified frame.

SKCanvasView(IntPtr)

Initializes a new instance of the SKCanvasView class from a native handle.

SKCanvasView()

Initializes a new instance of the SKCanvasView class.

public SKCanvasView();

Applies to

SKCanvasView(CGRect)

Initializes the SKCanvasView with the specified frame.

public SKCanvasView(CoreGraphics.CGRect frame);

Parameters

frame
CGRect

The frame used by the view, expressed in iOS points.

Applies to

SKCanvasView(IntPtr)

Initializes a new instance of the SKCanvasView class from a native handle.

public SKCanvasView(IntPtr p);

Parameters

p
IntPtr

The pointer (handle) to the unmanaged object.

Remarks

This constructor is used by the Xamarin.iOS runtime when creating managed representations of unmanaged objects. It is not intended to be called directly from user code.

Applies to