Copies a rectangle from source image.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void AssignRect(
	IEImage source,
	int x1,
	int y1,
	int x2,
	int y2
)
Public Sub AssignRect ( _
	source As IEImage, _
	x1 As Integer, _
	y1 As Integer, _
	x2 As Integer, _
	y2 As Integer _
)
public:
void AssignRect(
	IEImage^ source, 
	int x1, 
	int y1, 
	int x2, 
	int y2
)

Parameters

source
IEImage
Source image
x1
Int32
Top-Left horizontal position
y1
Int32
Top-Left vertical position
x2
Int32
Bottom-Right horizontal position
y2
Int32
Bottom-Right vertical position

See Also