| IGraphicsDisplayDrawPixel Method (Int32, Int32, Color) |
Writes a pixel to display memory.
Namespace: Microsoft.IoT.DeviceCore.DisplayAssembly: Microsoft.IoT.DeviceCore (in Microsoft.IoT.DeviceCore.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax void DrawPixel(
int x,
int y,
Color color
)
Sub DrawPixel (
x As Integer,
y As Integer,
color As Color
)
void DrawPixel(
[InAttribute] int x,
[InAttribute] int y,
[InAttribute] Color color
)
abstract DrawPixel :
x : int *
y : int *
color : Color -> unit
Parameters
- x
- Type: SystemInt32
- y
- Type: SystemInt32
- color
- Type: Windows.UIColor
Remarks
The pixel is not displayed until
Update is called.
See Also