Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
OffsetRegion Method
See Also 
Leadtools Namespace > RasterImage Class : OffsetRegion Method




rowOffset
The number of rows to move the region.
colOffset
The number of columns to move the region.
Moves the image region by the specified number of rows and columns.

Syntax

Visual Basic (Declaration) 
Public Sub OffsetRegion( _
   ByVal rowOffset As Integer, _
   ByVal colOffset As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterImage
Dim rowOffset As Integer
Dim colOffset As Integer
 
instance.OffsetRegion(rowOffset, colOffset)
C# 
public void OffsetRegion( 
   int rowOffset,
   int colOffset
)
Managed Extensions for C++ 
public: void OffsetRegion( 
   int rowOffset,
   int colOffset
) 
C++/CLI 
public:
void OffsetRegion( 
   int rowOffset,
   int colOffset
) 

Parameters

rowOffset
The number of rows to move the region.
colOffset
The number of columns to move the region.

Example

For an example, refer to FlipRegion.

Remarks

The move does not affect the pixels in the region.

This method uses image coordinates to specify the pixel. Therefore, you must account for the view perspective of the image.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also