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, according to 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. The default value of this property is empty. This is a read-write property. The next script contains an example of using this property.

Sub Months_OnStartRunning()
  ' Months is an Internal Tag.
  ' This 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?