GaugeGetDrilldown method (WinStudio scripts)
Applies To
IWSFormComponent interface
Definition
Returns the Drilldown that will be called on drill-down from the gauge for a Critical Number-bound gauge.
Syntax
object.GaugeGetDrilldown
Part | Description |
---|---|
object | Required. A reference to a valid gauge component object. |
Remarks
The return value is an integer that represents the critical number drilldown, which is called when the user double-clicks on the gauge. This drilldown must be associated to the critical number on the Critical Numbers Setup form.
Example
Sub Main() Application.ShowMessage(ThisForm.Components("gauge1").GaugeGetDrilldown) End Sub