ProcItemForm.UnitDataS

Sets/Gets an external reference data in the relevant processing unit (string)

Public Property UnitDataS(ByVal dataIdent As String) As String

Parameters
dataIdent
External reference identification string to be obtained/set
Input

Property Value
External reference data value associated to an external reference data (string type).

Description
Gets/sets a string type external reference data for the specified external reference identification string.

Example
   Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load

       Dim getValue As String
       Dim setValue As String

       ' Gets the value of the shutter speed 0
       getValue = UnitDataS("setupData1")

       ' Sets a value for the shutter speed 0
       setValue = "U1.DO1+10"
       UnitDataN("setupData1") = setValue

   End Sub