theConfig 10.0
Loading...
Searching...
No Matches
LcSettingC_TOR_CS_API

LcSettingC - various functions to create, initialize and destroy … More...

+ Collaboration diagram for LcSettingC_TOR_CS_API:

Functions

LcSettingC cslcconfig.LcSettingC.Add (string name, LcConfigTypeE __type)
  C#: [constructor] LcSettingC parent.Add(string name, LcConfigTypeE __type) C-API
This function adds a new child setting or element to the setting parent, which must be a group, array, or list …
 
LcConfigC cslcconfig.LcSettingC.GetConfig ()
  C#: LcConfigC setting.GetConfig() C-API
addon - return the LcConfigC from the LcSettingC
 

Detailed Description

LcSettingC - various functions to create, initialize and destroy …

Function Documentation

◆ Add()

LcSettingC cslcconfig.LcSettingC.Add ( string name,
LcConfigTypeE __type )
inline

C#: [constructor] LcSettingC parent.Add(string name, LcConfigTypeE __type) C-API
This function adds a new child setting or element to the setting parent, which must be a group, array, or list …

Definition at line 582 of file LcSettingC.cs.

582 {
583 IntPtr name_cstr = Marshal.StringToHGlobalAnsi(name);
584 IntPtr __retVal__L = Lc.LcSettingAdd(hdl, name_cstr, __type);
585 Marshal.FreeHGlobal(name_cstr);
586 if (__retVal__L == IntPtr.Zero) {
587 throw new MkInitError("LcSettingC.Add");
588 }
589 return LcSettingC.LcSettingC_ObjCreate(__retVal__L);
590 }

◆ GetConfig()

LcConfigC cslcconfig.LcSettingC.GetConfig ( )
inline

C#: LcConfigC setting.GetConfig() C-API
addon - return the LcConfigC from the LcSettingC

Definition at line 595 of file LcSettingC.cs.

595 {
596 IntPtr __retVal__L = Lc.LcSettingGetConfig(hdl);
597 return LcConfigC.LcConfigC_ObjNew(__retVal__L);
598 }