theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3StmtC_Class_CS_API

Sq3StmtC - define the class … More...

+ Collaboration diagram for Sq3StmtC_Class_CS_API:

Functions

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

Detailed Description

Sq3StmtC - define the class …

Function Documentation

◆ GetNull()

new static Sq3StmtC cssq3lite.Sq3StmtC.GetNull ( )
inlinestatic

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

Definition at line 233 of file Sq3StmtC_cs.cs.

233 {
234 IntPtr __retVal__L = Sq3.Sq3StmtGetNull();
235 return Sq3StmtC.Sq3StmtC_ObjNew(__retVal__L);
236 }

◆ HandleResolve()

new static Sq3StmtC cssq3lite.Sq3StmtC.HandleResolve ( Int32 netHdl)
inlinestatic

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

Definition at line 179 of file Sq3StmtC_cs.cs.

179 {
180 IntPtr __retVal__L = Sq3.Sq3StmtHandleResolve(IntPtr.Zero, netHdl);
181 return Sq3StmtC.Sq3StmtC_ObjNew(__retVal__L);
182 }

◆ Instances()

new static Sq3StmtC cssq3lite.Sq3StmtC.Instances ( )
inlinestatic

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

Definition at line 215 of file Sq3StmtC_cs.cs.

215 {
216 IntPtr __retVal__L = Sq3.Sq3StmtInstances(IntPtr.Zero);
217 return Sq3StmtC.Sq3StmtC_ObjNew(__retVal__L);
218 }

◆ Next()

new Sq3StmtC cssq3lite.Sq3StmtC.Next ( )
inline

C#: Sq3StmtC stmt.Next() C-API
get next instance from linked-list of Sq3StmtS type

Definition at line 201 of file Sq3StmtC_cs.cs.

201 {
202 IntPtr __retVal__L = Sq3.Sq3StmtNext(hdl);
203 return Sq3StmtC.Sq3StmtC_ObjNew(__retVal__L);
204 }

◆ Prev()

new Sq3StmtC cssq3lite.Sq3StmtC.Prev ( )
inline

C#: Sq3StmtC stmt.Prev() C-API
get previous instance from linked-list of Sq3StmtS type

Definition at line 207 of file Sq3StmtC_cs.cs.

207 {
208 IntPtr __retVal__L = Sq3.Sq3StmtPrev(hdl);
209 return Sq3StmtC.Sq3StmtC_ObjNew(__retVal__L);
210 }