Property

<< Click to Display Table of Contents >>

 

Property

Text Specifies the name of the linked property. When modified, allows moving the Link to another property of the same object. The next script contains an example of using this property.

Sub CommandButton1_Click()
  Dim bind
  Set bind = Screen.Item("TableBind").Links.Item(1)
  bind.Property = "Caption"
End Sub

Was this page useful?