<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > I18N > cI18N class > <cAppConfig> constructor |
Description
Instantiate a cI18N Object variable.
Syntax
'---Declare a new cI18N variable
Dim I18N As cI18N[(sFileName)]
'---Instantiate it as new object
I18N = New cI18N[(sFileName)]
Alternative declaration in one single line
'---Declare a new cI18N object variable and instantiate it
Dim I18N As New cI18N[(sFileName)]
Returns
None.
Parameters
Name |
Type |
Optional |
Meaning |
sFileName |
String |
Yes |
Name of an XML file. |
Remarks
Restrictions
See also
Examples