GaugeGetAlertValue method (WinStudio scripts)

Applies To

IWSFormComponent interface

Definition

Returns the value of the alert for a Critical Number-bound gauge.

Syntax

object.GaugeGetAlertValue()

Part Description
object Required. A reference to a valid gauge component object.

Remarks

The return value is a string containing the overridden alert value on the Critical Number gauge. If this value is blank, the gauge uses the alert value from the Critical Numbers Setup form.

Example

Sub Main()
    Application.ShowMessage(ThisForm.Components("gauge1").GaugeGetAlertValue)
End Sub