Inserts a new image layer into the layers list at the specified position. The new layer will become the current layer.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void LayersInsert(
	int position,
	int width,
	int height,
	IEImage..::..PixelFormat pixelFormat,
	int posX,
	int posY
)
Public Sub LayersInsert ( _
	position As Integer, _
	width As Integer, _
	height As Integer, _
	pixelFormat As IEImage..::..PixelFormat, _
	posX As Integer, _
	posY As Integer _
)
public:
void LayersInsert(
	int position, 
	int width, 
	int height, 
	IEImage..::..PixelFormat pixelFormat, 
	int posX, 
	int posY
)

Parameters

position
Int32
The inserting position
width
Int32
Layer width
height
Int32
Layer height
pixelFormat
IEImage..::..PixelFormat
Image pixel format
posX
Int32
Horizontal position. -1 = use next available position
posY
Int32
Vertical position. -1 = use next available position

See Also