Value

<< Click to Display Table of Contents >>

 

Value

Variant This is a Variant-type property, which allows storing values of any type, from an Integer to an object pointer (please check the next example). Use it to store values in a Viewer or in a Server, and to exchange data among several points in an application. Default value is empty. This is a read-write property. Example:

Sub Months_OnStartRunning()
  ' Months is an Internal tag.
  ' The event is used to initialize the array.
  Value = Array("January", "February", "March", _
    "April", "May", "June", "July", "August", _
    "September", "October", "November", "December")
End Sub

Was this page useful?