ProcItemForm.UnitDataN
Sets/Gets an external reference data in the relevant processing unit (numerical)
Public Property UnitDataN(ByVal dataIdent As String) As Double
Parameters
dataIdent
|
External reference identification string to be obtained/set
|
Input
|
Property Value
External reference data value associated to an external reference data (numerical type).
Description
Gets/sets a numerical 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 Double
Dim setValue As Double
' Gets the value of the shutter speed 0
getValue = UnitDataN("shutterSpeed0")
' Sets a value for the shutter speed 0
setValue = 500
UnitDataN("shutterSpeed0") = setValue
End Sub