<< Click to Display Table of Contents >>
Min |
This property specifies the lowest source value for a Table Row. The next example is applicable for both Max and Min properties.
Sub CommandButton1_Click()
Set Bind = _
Screen.Item("Rectangle1").Links.Item("ForegroundColor")
Set Line1 = Bind.Item(1)
Line1.Min = 0
Line1.Max = 20
Set Line2 = Bind.Item(2)
Line2.Min = 21
Line2.Max = 100
End Sub