BitmapDataGetPixel Method (Int32, Int32) |
Gets the color of the pixel at the specified coordinates.
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public abstract Color GetPixel(
int x,
int y
)
Public MustOverride Function GetPixel (
x As Integer,
y As Integer
) As Color
abstract GetPixel :
x : int *
y : int -> Color
Parameters
- x
- Type: SystemInt32
The x coordinate to get the color from. - y
- Type: SystemInt32
The y coordinate to get the color from.
Return Value
Type:
ColorThe color of the pixel.
See Also