534
edits
m (→PROPERTIES Section:  Correction)  | 
				m (→getValueType())  | 
				||
| Line 113: | Line 113: | ||
Return the type of value that is used witch this switch. Can be bool (boolean), int (integer) or string (string) according with the configuration file.  | Return the type of value that is used witch this switch. Can be bool (boolean), int (integer) or string (string) according with the configuration file.  | ||
<syntaxhighlight lang="python">  | <syntaxhighlight lang="python">  | ||
Python 3.4.2 (default, Sep 26 2018, 07:16:01)  | |||
[GCC 4.9.2] on linux  | |||
Type "help", "copyright", "credits" or "license" for more information.  | |||
>>> from FGInterface import FGInterface as FGINT  | |||
>>> FGINT1 = FGINT('radiopanel.cfg', 0)  | |||
>>> FGINT1.createDevices()  | |||
>>> FGINT1.createElements()  | |||
>>> RMP0PSW = FGINT1.getElement('RMP0PSW')  | |||
>>> RMP0PSW.getValueType()  | |||
'int'  | |||
>>>  | |||
</syntaxhighlight>  | </syntaxhighlight>  | ||
edits