SetImage sets the image assigned to index.

The rectangle x1,y1,x2,y2 of image is copied internally. After SetImage you can free the image.

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

Syntax

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

Parameters

index
Int32
The destination image index
image
IEImage
The source image
x1
Int32
Left coordinate
y1
Int32
Top coordinate
x2
Int32
Right coordinate
y2
Int32
Bottom coordinate

See Also