Table of Contents

Struct ScreenConfiguration

Namespace
nanoFramework.UI
Assembly
nanoFramework.Graphics.dll

The screen configuration in the driver.

public struct ScreenConfiguration
Inherited Members

Constructors

ScreenConfiguration(ushort, ushort, ushort, ushort, GraphicDriver)

Creates a screen configuration.

public ScreenConfiguration(ushort x, ushort y, ushort width, ushort height, GraphicDriver graphicDriver = null)

Parameters

x ushort

The x position the screen starts in the driver.

y ushort

The y position the screen starts in the driver.

width ushort

The width of the screen starts in the driver.

height ushort

The height of the screen starts in the driver.

graphicDriver GraphicDriver

The driver to use.

Properties

GraphicDriver

Gets or sets the graphic driver.

public GraphicDriver GraphicDriver { get; set; }

Property Value

GraphicDriver

Height

Gets or sets the height of the screen starts in the driver.

public ushort Height { get; set; }

Property Value

ushort

Width

Gets or sets the width of the screen starts in the driver.

public ushort Width { get; set; }

Property Value

ushort

X

Gets or sets the x position the screen starts in the driver.

public ushort X { get; set; }

Property Value

ushort

Y

Gets or sets the y position the screen starts in the driver.

public ushort Y { get; set; }

Property Value

ushort