Click or drag to resize
IsothermCollectionRemove Method
Removes the specified isotherm.

Namespace: Flir.Atlas.Image.Isotherms
Assembly: Flir.Atlas.Image (in Flir.Atlas.Image.dll) Version: 3.1
Syntax
C#
public void Remove(
	Isotherm isotherm
)

Parameters

isotherm
Type: Flir.Atlas.Image.IsothermsIsotherm
The isotherm.
Examples
C#
 using Flir.Atlas.Image;

 Isotherm isotherm = _image.Isotherms[0];
_image.Isotherms.Remove(isotherm);
See Also