Moves the specified region of screen buffer to the specified position.
Namespace:
Rebex.TerminalEmulation
Assembly:
Rebex.Terminal (in Rebex.Terminal.dll)
Syntax
Visual Basic |
---|
Public Sub MoveBufferArea ( _ sourceLeft As Integer, _ sourceTop As Integer, _ sourceWidth As Integer, _ sourceHeight As Integer, _ targetLeft As Integer, _ targetTop As Integer _ ) |
C# |
---|
public void MoveBufferArea( int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop ) |
Parameters
- sourceLeft
- Type: System..::..Int32
The leftmost column of the source region (0 is the first column).
- sourceTop
- Type: System..::..Int32
The topmost row of the source region (0 is the first row).
- sourceWidth
- Type: System..::..Int32
Width of the region.
- sourceHeight
- Type: System..::..Int32
Height of the region
- targetLeft
- Type: System..::..Int32
The leftmost column of the target region (0 is the first column).
- targetTop
- Type: System..::..Int32
The topmost row of the target region (0 is the first row).