Merge specified layers

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void LayersMerge(
	int[] layerList
)
Public Sub LayersMerge ( _
	layerList As Integer() _
)
public:
void LayersMerge(
	array<int>^ layerList
)

Parameters

layerList
array<Int32>[]()[][]
An array of layer indexes to remove. The array must be ordered and all layers will be merged into the layer specified by the first index. Empty list means "all layers".

Examples

CopyC#
ieViewer1.Image.LayersMerge(new int[] {0, 1, 2});

See Also