Click or drag to resize
Alarm Class
Base class for all alarms.
Inheritance Hierarchy

Namespace: Flir.Atlas.Image.Alarms
Assembly: Flir.Atlas.Image (in Flir.Atlas.Image.dll) Version: 3.1
Syntax
C#
public abstract class Alarm

The Alarm type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyIsoCoverage
Gets or sets a value indicating whether [iso coverage].
Public propertyIsoIndication
Gets or sets a value indicating whether [iso indication].
Public propertyIsotherm
Gets or sets the isotherm corresponding to the alarm
Public propertyName
Gets or sets the name.
Top
Examples
C#
using Flir.Atlas.Image;
                 using (ThermalImageFile image = new ThermalImageFile())
                 {
                      image.Open(_existingFile);
                      image.Alarms.ClearAll();
                      var hum = image.Alarms.AddHumidityAlarms("Name1", 20, 0.80, 0.56);
                      image.Save(fileName);
                 }
See Also