LcSettingC - various functions to perform misc operations … More...
Functions | |
static OT_ProcRet | pylcconfig_LcSettingC_AddIfNotExists (LcSettingC_ARGS) |
Python: → C-API addon - add name with type only if not exists in the setting … | |
static OT_ProcRet | pylcconfig_LcSettingC_Parent (LcSettingC_ARGS) |
Python: → C-API This function returns the parent setting of the given setting, or NULL if setting is the root setting … | |
static OT_ProcRet | pylcconfig_LcSettingC_Exists (LcSettingC_ARGS) |
Python: → C-API addon - return true if name exists in the setting otherwise false … | |
static OT_ProcRet | pylcconfig_LcSettingC_Index (LcSettingC_ARGS) |
Python: → C-API This function returns the index of the given setting within its parent setting … | |
static OT_ProcRet | pylcconfig_LcSettingC_Length (LcSettingC_ARGS) |
Python: → C-API This function returns the number of settings in a group, or the number of elements in a list or array … | |
MK_DEPRECATED static MK_UNUSED OT_ProcRet | pylcconfig_LcSettingC_Log (LcSettingC_ARGS) |
static OT_ProcRet | pylcconfig_LcSettingC_Name (LcSettingC_ARGS) |
Python: → C-API This function returns the name of the given setting, or NULL if the setting has no name … | |
static OT_ProcRet | pylcconfig_LcSettingC_Remove (LcSettingC_ARGS) |
Python: → C-API This function removes and destroys the setting named name from the parent setting parent, which must be a group … | |
static OT_ProcRet | pylcconfig_LcSettingC_RemoveElem (LcSettingC_ARGS) |
Python: → C-API This function removes the child setting at the given index index from the setting parent, which must be a group, list, or array … | |
static OT_ProcRet | pylcconfig_LcSettingC_SourceFile (LcSettingC_ARGS) |
Python: → C-API This function returns the name of the file from which the setting setting was read, or NULL if the setting was not read from a file … | |
static OT_ProcRet | pylcconfig_LcSettingC_SourceLine (LcSettingC_ARGS) |
Python: → C-API This function returns the line number of the configuration file or stream at which the setting setting was read, or 0 if no line number is available … | |
static OT_ProcRet | pylcconfig_LcSettingC_Type (LcSettingC_ARGS) |
Python: → C-API This function returns the type of the given setting … | |
LcSettingC - various functions to perform misc operations …
|
static |
Python:
→ C-API LcSettingC setting.AddIfNotExists(name:string, cfgtype:LcConfigTypeE)
addon - add name with type only if not exists in the setting …
Definition at line 726 of file LcSettingC_py.c.
|
static |
Python:
→ C-API bool setting.Exists(name:string)
addon - return true if name exists in the setting otherwise false …
Definition at line 764 of file LcSettingC_py.c.
|
static |
Python:
→ C-API int32 setting.Index()
This function returns the index of the given setting within its parent setting …
Definition at line 779 of file LcSettingC_py.c.
|
static |
Python:
→ C-API int32 setting.Length()
This function returns the number of settings in a group, or the number of elements in a list or array …
Definition at line 792 of file LcSettingC_py.c.
|
static |
Definition at line 806 of file LcSettingC_py.c.
|
static |
Python:
→ C-API string setting.Name()
This function returns the name of the given setting, or NULL
if the setting has no name …
Definition at line 809 of file LcSettingC_py.c.
|
static |
Python:
→ C-API LcSettingC setting.Parent()
This function returns the parent setting of the given setting, or NULL
if setting is the root setting …
Definition at line 744 of file LcSettingC_py.c.
|
static |
Python:
→ C-API parent.Remove(name:string)
This function removes and destroys the setting named name from the parent setting parent, which must be a group …
Definition at line 822 of file LcSettingC_py.c.
|
static |
Python:
→ C-API parent.RemoveElem(idx:int32)
This function removes the child setting at the given index index from the setting parent, which must be a group, list, or array …
Definition at line 838 of file LcSettingC_py.c.
|
static |
Python:
→ C-API string setting.SourceFile()
This function returns the name of the file from which the setting setting was read, or NULL if the setting was not read from a file …
Definition at line 854 of file LcSettingC_py.c.
|
static |
Python:
→ C-API int32 setting.SourceLine()
This function returns the line number of the configuration file or stream at which the setting setting was read, or 0 if no line number is available …
Definition at line 867 of file LcSettingC_py.c.
|
static |
Python:
→ C-API LcConfigTypeE setting.Type()
This function returns the type of the given setting …
Definition at line 880 of file LcSettingC_py.c.