Exchanges the pixels of the specified line with new pixels.
Syntax
'Declaration
Public MustOverride Sub UpdateLineFrom( _
ByVal startColumn As Integer, _
ByVal As Integer, _
ByVal endColumn As Integer, _
ByVal As Integer, _
ByVal As ImGearPixelArray _
)
'Usage
Dim instance As ImGearDIB
Dim startColumn As Integer
Dim startRow As Integer
Dim endColumn As Integer
Dim endRow As Integer
Dim pixels As ImGearPixelArray
instance.UpdateLineFrom(startColumn, startRow, endColumn, endRow, pixels)
public abstract void UpdateLineFrom(
int startColumn,
int ,
int endColumn,
int ,
ImGearPixelArray
)
public: abstract void UpdateLineFrom(
int startColumn,
int ,
int endColumn,
int ,
ImGearPixelArray*
)
public:
abstract void UpdateLineFrom(
int startColumn,
int ,
int endColumn,
int ,
ImGearPixelArray^
)
Parameters
- startColumn
- X coordinate of line start.
- startRow
- Y coordinate of line start.
- endColumn
- X coordinate of line end.
- endRow
- Y coordinate of line end.
- pixels
- New values for pixels being updated.
See Also