  | CDUBaseDataEx Method  | 
 
This method corrects an entire database line using a
time-based correction table. It is given 2 input channel
tokens and 1 output channel token as well as the table
object to use (table sort flag=1 for sort, =0 for no sort).
 
    Namespace: 
   Geosoft.Desktop.GXNet
    Assembly:
   geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2025.1.0.25
Syntaxpublic static void BaseDataEx(
	CDB db,
	int line,
	int in_ch,
	int time_ch,
	int out_ch,
	CTB tb,
	int flag
)
public static void BaseDataEx(
	CDB db,
	int line,
	int in_ch,
	int time_ch,
	int out_ch,
	CTB tb,
	int flag
)
Public Shared Sub BaseDataEx ( 
	db As CDB,
	line As Integer,
	in_ch As Integer,
	time_ch As Integer,
	out_ch As Integer,
	tb As CTB,
	flag As Integer
)
Public Shared Sub BaseDataEx ( 
	db As CDB,
	line As Integer,
	in_ch As Integer,
	time_ch As Integer,
	out_ch As Integer,
	tb As CTB,
	flag As Integer
)
public:
static void BaseDataEx(
	CDB^ db, 
	int line, 
	int in_ch, 
	int time_ch, 
	int out_ch, 
	CTB^ tb, 
	int flag
)
public:
static void BaseDataEx(
	CDB^ db, 
	int line, 
	int in_ch, 
	int time_ch, 
	int out_ch, 
	CTB^ tb, 
	int flag
)
static member BaseDataEx : 
        db : CDB * 
        line : int * 
        in_ch : int * 
        time_ch : int * 
        out_ch : int * 
        tb : CTB * 
        flag : int -> unit 
static member BaseDataEx : 
        db : CDB * 
        line : int * 
        in_ch : int * 
        time_ch : int * 
        out_ch : int * 
        tb : CTB * 
        flag : int -> unit 
Parameters
- db
 - Type: GeoEngine.Core.GXNetCDB
Database - line
 - Type: SystemInt32
Line Handle to apply correction to - in_ch
 - Type: SystemInt32
Input Channel Token  [<define>DB_LOCK_READONLY</define>] - time_ch
 - Type: SystemInt32
Time Channel Token   [<define>DB_LOCK_READONLY</define>] - out_ch
 - Type: SystemInt32
Output Channel Token [<define>DB_LOCK_READWRITE</define>] - tb
 - Type: GeoEngine.Core.GXNetCTB
Table Object (a Date/Time/Correction Table) - flag
 - Type: SystemInt32
Table sort flag: 0 - do not sort, 1 - do sort. 
See Also