ColorActiveAlarm

<< Click to Display Table of Contents >>

 

ColorActiveAlarm

Indexed Property Defines an object that configures the colors of an active alarm. This property is indexed by the alarm severity and is only available via script. The next table contains all possible values for the index of this property.

Available options for the index of the ColorActiveAlarm property

Index

Severity

Returned Object

-2

Critical

Defines the colors for active alarms with a critical severity

-1

-

Defines the colors for active alarms, regardless of their severity

0

High

Defines the colors for active alarms with a high severity

1

Medium

Defines the colors for active alarms with a medium severity

2

Low

Defines the colors for active alarms with a low severity

 

Usage example of this property:

' Returns an object to configure the colors of active alarms with high severity
Set AlarmObject = Screen.Item("E3Alarm1").ColorActiveAlarm(0)
' Copies the configuration of the active alarm with high severity (0)
' to the active alarm with medium severity (1)
Screen.Item("E3Alarm1").ColorActiveAlarm(1) = Screen.Item("E3Alarm1").ColorActiveAlarm(0)

 

The object returned by this property represents an active alarm in a specific severity, that is, high, medium, low, or the default configuration of this type of alarm. By using this object, users can configure an alarm's background color, text color, and its blinking mode, which are also available for configuration on the Properties Window of the E3Alarm object, on the Colors tab. For more information about the object returned by this property, please check topic Alarm Color.

Was this page useful?