FZ_FormBase.GetSystemData
Gets system data
Public Shared Function GetSystemData( _
   ByVal dataIdent0 As String, _
   ByVal dataIdent1 As String, _
   ByRef data As String _
) As Integer
 
Parameters
dataIdent0
  | 
System data identification name 0
  | 
Input
  | 
dataIdent1
  | 
System data identification name 1
  | 
Input
  | 
data
  | 
Value of system data
  | 
Output
  | 
Return Value
Returns 0 when the system data is successfully obtained.
Otherwise returns a non-zero value.
Description
Gets the value of the 
system data of the specified setting type number.
 
Example
   Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
       Dim data As String
       ' Gets the set value for the serial baud rate
       GetSystemData("SerialNormal", "baudRate", data)
  End Sub