| IGraphicsDisplayDrawPixel Method (Int32, Int32, Byte, Byte, Byte) |
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,
byte red,
byte green,
byte blue
)
Sub DrawPixel (
x As Integer,
y As Integer,
red As Byte,
green As Byte,
blue As Byte
)
void DrawPixel(
[InAttribute] int x,
[InAttribute] int y,
[InAttribute] unsigned char red,
[InAttribute] unsigned char green,
[InAttribute] unsigned char blue
)
abstract DrawPixel :
x : int *
y : int *
red : byte *
green : byte *
blue : byte -> unit
Parameters
- x
- Type: SystemInt32
- y
- Type: SystemInt32
- red
- Type: SystemByte
- green
- Type: SystemByte
- blue
- Type: SystemByte
Remarks
The pixel is not displayed until
Update is called.
See Also