GaugeGetGroup method (WinStudio scripts)
Applies To
IWSFormComponent interface
Definition
Returns the current Group for a Critical Number-bound gauge that is bound to a critical number that accepts Group values.
Syntax
object.GaugeGetGroup
Part | Description |
---|---|
object | Required. A reference to a valid gauge component object. |
Remarks
The return value is a string containing the Group By value for which the critical number is calculated. Group By values are optional and are supported on IDO-based critical numbers that have a group by property specified.
Example
Sub Main() Application.ShowMessage(ThisForm.Components("gauge1").GaugeGetGroup) End Sub