MinimumValue

<< Click to Display Table of Contents >>

 

MinimumValue

Number This property determines the minimum value reached by a Scale. Default value of this property is 0 (zero). The next script contains an example of using this property.

Sub CommandButton1_Click()
  ' When clicking this button, opens a MessageBox
  ' indicating the minimum value for this property
  MsgBox _
    CSTr(Application.GetObject("Data.Scale1").MinimumValue)
End Sub

Was this page useful?