GaugeGetGoalValue method (WinStudio scripts)

Applies To

IWSFormComponent interface

Definition

Returns the goal value for a Critical Number-bound gauge.

Syntax

object.GaugeGetGoalValue

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

Remarks

The return value is a string containing the overridden goal value on the Critical Number gauge.  If this value is blank, the gauge will use the goal value from Critical Numbers Setup.

Example

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