Move Method (IndexBitmap)
In This Topic
Moves a range of elements from an IndexBitmap starting at the specified source index and pastes them to another IndexBitmap starting at the specified target index. Elements of old range will be clear. The length and the indexes are specified as 32-bit integers.
Syntax
'Declaration
Public Shared Sub Move( _
ByVal As IndexBitmap, _
ByVal As Integer, _
ByVal As IndexBitmap, _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim sourceBitmap As IndexBitmap
Dim fromIndex As Integer
Dim targetBitmap As IndexBitmap
Dim toIndex As Integer
Dim count As Integer
IndexBitmap.Move(sourceBitmap, fromIndex, targetBitmap, toIndex, count)
public static void Move(
IndexBitmap ,
int ,
IndexBitmap ,
int ,
int
)
Parameters
- sourceBitmap
- The IndexBitmap that contains the data to move.
- fromIndex
- A 32-bit integer that represents the index in the source at which moving begins.
- targetBitmap
- The IndexBitmap that receives the data.
- toIndex
- count
See Also