Removes all markers having specified marker type.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void DeleteMarkerInstances(
	byte markerType
)
Public Sub DeleteMarkerInstances ( _
	markerType As Byte _
)
public:
void DeleteMarkerInstances(
	unsigned char markerType
)

Parameters

markerType
Byte
Marker type

Examples

CopyC#
// removes ICC jpeg profile (APP2 markers)
ieViewer1.Image.IOParams.JPEGMarkers.DeleteMarkerInstances(JPEGMarkers.APP2);

See Also