GaugeSetCriticalNumber method (WinStudio scripts)

Applies To

IWSFormComponent interface

Definition

Sets the critical number for the gauge to show for a critical number bound gauge.

Syntax

object.GaugeSetCriticalNumber(int)

Part Description
object Required. A reference to a valid gauge component object.
int Required. An integer indicating which critical number should be shown by the gauge.

Example

Sub Main()
    ThisForm.Components("gauge1").GaugeSetCriticalNumber(1)
End Sub