Updates single pixel with new value.
Syntax
'Declaration
Public MustOverride Sub UpdatePixelFrom( _
ByVal column As Integer, _
ByVal As Integer, _
ByVal As ImGearPixel _
)
'Usage
Dim instance As ImGearDIB
Dim column As Integer
Dim row As Integer
Dim pixel As ImGearPixel
instance.UpdatePixelFrom(column, row, pixel)
public abstract void UpdatePixelFrom(
int column,
int ,
ImGearPixel
)
public: abstract void UpdatePixelFrom(
int column,
int ,
ImGearPixel*
)
public:
abstract void UpdatePixelFrom(
int column,
int ,
ImGearPixel^
)
Parameters
- column
- X coordinate of pixel.
- row
- Y coordinate of pixel.
- pixel
- New value for the pixel.
See Also