WinStudio

GaugeSetSubCaptionFormat Method

Applies To

IWSFormComponent interface

Definition

Sets the Sub-Caption Format (All, Actual, None) for a Critical Number bound Gauge.

Syntax

object.GaugeSetSubCaptionFormat(string)

Part Description
object Required. A reference to a valid gauge component object.
string Required. A string setting the sub-caption format of the gauge.

Remarks

Valid sub-caption formats are:

Example

Sub Main()
    ThisForm.Components("gauge1").GaugeSetSubCaptionFormat("Actual")
End Sub