theConfig 10.0
Loading...
Searching...
No Matches
LcConfigC_Get_CS_API

LcConfigC - various functions to get config-dataMore...

+ Collaboration diagram for LcConfigC_Get_CS_API:

Functions

LcConfigFormatE cslcconfig.LcConfigC.GetDefaultFormat ()
  C#: LcConfigFormatE config.GetDefaultFormat() C-API
These functions, which are implemented as macros, get and set the default external format for settings in the configuration config
 
short cslcconfig.LcConfigC.GetFloatPrecision ()
  C#: short config.GetFloatPrecision() C-API
Since v1.6 These functions get and set the number of decimal digits to output after the radix character when writing the configuration to a file or stream …
 
string cslcconfig.LcConfigC.GetIncludeDir ()
  C#: string config.GetIncludeDir() C-API
ConfigSetIncludeDir specifies the include directory, include_dir, relative to which the files specified in '@include' directives will be located for the configuration config
 
bool cslcconfig.LcConfigC.GetOption (LcConfigOptionsEF option)
  C#: bool config.GetOption(LcConfigOptionsEF option) C-API
Since v1.7 These functions get and set the given option of the configuration config
 
LcConfigOptionsEF cslcconfig.LcConfigC.GetOptions ()
  C#: LcConfigOptionsEF config.GetOptions() C-API
These functions get and set the options for the configuration config
 
short cslcconfig.LcConfigC.GetTabWidth ()
  C#: short config.GetTabWidth() C-API
These functions, which are implemented as macros, get and set the tab width for the configuration config
 

Detailed Description

LcConfigC - various functions to get config-data

Function Documentation

◆ GetDefaultFormat()

LcConfigFormatE cslcconfig.LcConfigC.GetDefaultFormat ( )
inline

C#: LcConfigFormatE config.GetDefaultFormat() C-API
These functions, which are implemented as macros, get and set the default external format for settings in the configuration config

Definition at line 175 of file LcConfigC.cs.

175 {
176 LcConfigFormatE __retVal__L = Lc.LcConfigGetDefaultFormat(hdl);
177 return __retVal__L;
178 }
LcConfigFormatE
set the format of a LcSettingC …
Definition LcEnum_lc.h:30

◆ GetFloatPrecision()

short cslcconfig.LcConfigC.GetFloatPrecision ( )
inline

C#: short config.GetFloatPrecision() C-API
Since v1.6 These functions get and set the number of decimal digits to output after the radix character when writing the configuration to a file or stream …

Definition at line 181 of file LcConfigC.cs.

181 {
182 Int16 __retVal__L = Lc.LcConfigGetFloatPrecision(hdl);
183 return __retVal__L;
184 }

◆ GetIncludeDir()

string cslcconfig.LcConfigC.GetIncludeDir ( )
inline

C#: string config.GetIncludeDir() C-API
ConfigSetIncludeDir specifies the include directory, include_dir, relative to which the files specified in '@include' directives will be located for the configuration config

Definition at line 187 of file LcConfigC.cs.

187 {
188 IntPtr __retVal__L = Lc.LcConfigGetIncludeDir(hdl);
189 return Marshal.PtrToStringAnsi(__retVal__L);
190 }

◆ GetOption()

bool cslcconfig.LcConfigC.GetOption ( LcConfigOptionsEF option)
inline

C#: bool config.GetOption(LcConfigOptionsEF option) C-API
Since v1.7 These functions get and set the given option of the configuration config

Definition at line 193 of file LcConfigC.cs.

193 {
194 bool __retVal__L = Lc.LcConfigGetOption(hdl, option);
195 return __retVal__L;
196 }

◆ GetOptions()

LcConfigOptionsEF cslcconfig.LcConfigC.GetOptions ( )
inline

C#: LcConfigOptionsEF config.GetOptions() C-API
These functions get and set the options for the configuration config

Definition at line 199 of file LcConfigC.cs.

199 {
200 LcConfigOptionsEF __retVal__L = Lc.LcConfigGetOptions(hdl);
201 return __retVal__L;
202 }
LcConfigOptionsEF
define the configuration-option of a LcConfigC …
Definition LcEnum_lc.h:134

◆ GetTabWidth()

short cslcconfig.LcConfigC.GetTabWidth ( )
inline

C#: short config.GetTabWidth() C-API
These functions, which are implemented as macros, get and set the tab width for the configuration config

Definition at line 205 of file LcConfigC.cs.

205 {
206 Int16 __retVal__L = Lc.LcConfigGetTabWidth(hdl);
207 return __retVal__L;
208 }