:html
:Revision=1
<<
128.186
Config-Objekt|Config
$NoSort
--
The IP-Objekt <!RW>Config is used for the access to the values of the configuration.

In the following table the sections and the keys of the configuration values are listed.

<!STBL>
<tr bgcolor=f0f0f0><td><b>Konfigurationswert</b><!><b>Section</b><!><b>Key</b><!>
<!>MeasData DLL - Enabled<!>MeasDataDLL<!>Enabled<!>
<!>MeasData DLL File name<!>MeasDataDLL<!>DLLName<!>
<!>MeasData DLL Error save to file<!>MeasDataDLL<!>SaveAsTextOnError<!>
<!>MeasData DLL log sended data<!>MeasDataDLL<!>LogSentData<!>
<!ETBL>

>>

<<
128.186.1
Functions of the Config-Object|Functions
--
>>
<<
128.186.1.1
Config.GetConfigData|GetConfigData
--
<!DEF>
function <!TW>Config.GetConfigData ( Section, Key : string ) : string;
<!TXT>
Returns a configuration value. The needed values <!RW>Section and <!RW>Key are in the table <a href="128.186">Configurationtable</a>.

Example
<!CODE>
var
  vsConfigData : string;
step

  vsConfigData := Config.GetConfigData('MeasDataDLL', 'Enabled');
  Debug.SHOW(1,'Configurationsdaten: ', vsConfigData);

end.
<!TXT>

>>
