theConfig 10.0
Loading...
Searching...
No Matches
LcSettingC_Class_CS_API

LcSettingC - define the class … More...

Functions

new static LcSettingC cslcconfig.LcSettingC.HandleResolve (Int32 netHdl)
  C#: [static] LcSettingC LcSettingC.HandleResolve(Int32 netHdl) C-API
Handle-Resolve-Slot - return a LcSettingC from netHdl or null if invalid…
 
new LcSettingC cslcconfig.LcSettingC.Next ()
  C#: LcSettingC cfs.Next() C-API
get next instance from linked-list of LcSettingS type
 
new LcSettingC cslcconfig.LcSettingC.Prev ()
  C#: LcSettingC cfs.Prev() C-API
get previous instance from linked-list of LcSettingS type
 
new static LcSettingC cslcconfig.LcSettingC.Instances ()
  C#: [static] LcSettingC LcSettingC.Instances() C-API
get head-instance from linked-list of LcSettingS type …
 
new static LcSettingC cslcconfig.LcSettingC.GetNull ()
  C#: [static] LcSettingC LcSettingC.GetNull() C-API
Null-Slot - return a LcSettingC typed NULL instance …
 

Detailed Description

LcSettingC - define the class …

Function Documentation

◆ GetNull()

new static LcSettingC cslcconfig.LcSettingC.GetNull ( )
inlinestatic

C#: [static] LcSettingC LcSettingC.GetNull() C-API
Null-Slot - return a LcSettingC typed NULL instance …

Definition at line 139 of file LcSettingC.cs.

139 {
140 IntPtr __retVal__L = Lc.LcSettingGetNull();
141 return LcSettingC.LcSettingC_ObjNew(__retVal__L);
142 }

◆ HandleResolve()

new static LcSettingC cslcconfig.LcSettingC.HandleResolve ( Int32 netHdl)
inlinestatic

C#: [static] LcSettingC LcSettingC.HandleResolve(Int32 netHdl) C-API
Handle-Resolve-Slot - return a LcSettingC from netHdl or null if invalid…

Definition at line 85 of file LcSettingC.cs.

85 {
86 IntPtr __retVal__L = Lc.LcSettingHandleResolve(IntPtr.Zero, netHdl);
87 return LcSettingC.LcSettingC_ObjNew(__retVal__L);
88 }

◆ Instances()

new static LcSettingC cslcconfig.LcSettingC.Instances ( )
inlinestatic

C#: [static] LcSettingC LcSettingC.Instances() C-API
get head-instance from linked-list of LcSettingS type …

Definition at line 121 of file LcSettingC.cs.

121 {
122 IntPtr __retVal__L = Lc.LcSettingInstances(IntPtr.Zero);
123 return LcSettingC.LcSettingC_ObjNew(__retVal__L);
124 }

◆ Next()

new LcSettingC cslcconfig.LcSettingC.Next ( )
inline

C#: LcSettingC cfs.Next() C-API
get next instance from linked-list of LcSettingS type

Definition at line 107 of file LcSettingC.cs.

107 {
108 IntPtr __retVal__L = Lc.LcSettingNext(hdl);
109 return LcSettingC.LcSettingC_ObjNew(__retVal__L);
110 }

◆ Prev()

new LcSettingC cslcconfig.LcSettingC.Prev ( )
inline

C#: LcSettingC cfs.Prev() C-API
get previous instance from linked-list of LcSettingS type

Definition at line 113 of file LcSettingC.cs.

113 {
114 IntPtr __retVal__L = Lc.LcSettingPrev(hdl);
115 return LcSettingC.LcSettingC_ObjNew(__retVal__L);
116 }