| SSD1306WritePixelAsync Method |
Writes the specified pixel to the display.
Namespace: Microsoft.IoT.Devices.DisplayAssembly: Microsoft.IoT.Devices (in Microsoft.IoT.Devices.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public IAsyncAction WritePixelAsync(
int x,
int y,
Color color
)
Public Function WritePixelAsync (
x As Integer,
y As Integer,
color As Color
) As IAsyncAction
public:
virtual IAsyncAction^ WritePixelAsync(
[InAttribute] int x,
[InAttribute] int y,
[InAttribute] Color color
) sealed
abstract WritePixelAsync :
x : int *
y : int *
color : Color -> IAsyncAction
override WritePixelAsync :
x : int *
y : int *
color : Color -> IAsyncAction
Parameters
- x
- Type: SystemInt32
The x location of the pixel.
- y
- Type: SystemInt32
The y location of the pixel.
- color
- Type: Windows.UIColor
The color of the pixel.
Return Value
Type:
IAsyncAction
An
IAsyncAction that represents the operation.
See Also