Edit

SKGLView Constructors

Definition

Overloads

Name Description
SKGLView()

Initializes a new instance of the SKGLView class.

SKGLView(CGRect)

Initializes the SKGLView with the specified frame.

SKGLView(IntPtr)

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

SKGLView()

Initializes a new instance of the SKGLView class.

public SKGLView();

Applies to

SKGLView(CGRect)

Initializes the SKGLView with the specified frame.

public SKGLView(CoreGraphics.CGRect frame);

Parameters

frame
CGRect

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

Applies to

SKGLView(IntPtr)

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

public SKGLView(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