Copy the specified rectangle to a destination IEImage object.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void CopyRect(
	IEImage destination,
	int srcX,
	int srcY,
	int dstX,
	int dstY,
	int rectWidth,
	int rectHeight,
	bool copyAlpha
)
Public Sub CopyRect ( _
	destination As IEImage, _
	srcX As Integer, _
	srcY As Integer, _
	dstX As Integer, _
	dstY As Integer, _
	rectWidth As Integer, _
	rectHeight As Integer, _
	copyAlpha As Boolean _
)
public:
void CopyRect(
	IEImage^ destination, 
	int srcX, 
	int srcY, 
	int dstX, 
	int dstY, 
	int rectWidth, 
	int rectHeight, 
	bool copyAlpha
)

Parameters

destination
IEImage
The target IEImage object.
srcX
Int32
Left source coordinate.
srcY
Int32
Top source coordinate.
dstX
Int32
Left destination coordiante.
dstY
Int32
Top destination coordiante.
rectWidth
Int32
Rectangle width.
rectHeight
Int32
Rectangle height.
copyAlpha
Boolean
If true alpha channel is also copied (only if the source bitmap has an alpha channel).

See Also