Click or drag to resize
IGraphicsDisplay Interface
The interface for a graphical display.

Namespace: Microsoft.IoT.DeviceCore.Display
Assembly: Microsoft.IoT.DeviceCore (in Microsoft.IoT.DeviceCore.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface IGraphicsDisplay : IDevice, 
	IClosable

The IGraphicsDisplay type exposes the following members.

Properties
  NameDescription
Public propertyAutoUpdate
Gets or sets a value that indicates if Update should automatically be called after drawing operations.
Public propertyHeight
Gets the height of the display in pixels.
Public propertyOrientation
Gets or sets the orientation of the display.
Public propertyPixelFormat
Gets the format for each pixel on the display.
Public propertyWidth
Gets the width of the display in pixels.
Top
Methods
  NameDescription
Public methodClear
Clears the display.
Public methodClose
Releases system resources that are exposed by a Windows Runtime object.
(Inherited from IClosable.)
Public methodDrawPixel(Int32, Int32, Color)
Writes a pixel to display memory.
Public methodDrawPixel(Int32, Int32, Byte, Byte, Byte)
Writes a pixel to display memory.
Public methodIsOrientationSupported
Gets a value that indicates if the specified orientation is supported by the display.
Public methodUpdate
Updates the display by writing any uncommitted operations.
Top
See Also