GaugeSetDrilldown method (WinStudio scripts)

Applies To

IWSFormComponent interface

Definition

Sets the drilldown that is called during drilldown from the gauge for a critical number bound gauge.

Syntax

object.GaugeSetDrilldown(integer)

Part Description
object Required. A reference to a valid gauge component object.
integer Required. The number of the drilldown that is called when the user double clicks on the gauge.

Remarks

The new drilldown must already be associated with the critical number on the Critical Numbers Setup form.

Example

Sub Main()
    ThisForm.Components("gauge1").GaugeSetDrilldown(5)
End Sub