<cAppConfig> constructor

<< 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.
XML file can be specified later using <cAppConfig>.Load

 

Remarks

 

Restrictions

 

See also

 

Examples

 

See cAppConfig example