 | CDUAppend Method |
Append a source database onto a destination database.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void Append(
CDB d_bi,
CDB d_bo,
int ignore
)
public static void Append(
CDB d_bi,
CDB d_bo,
int ignore
)
Public Shared Sub Append (
d_bi As CDB,
d_bo As CDB,
ignore As Integer
)
Public Shared Sub Append (
d_bi As CDB,
d_bo As CDB,
ignore As Integer
)
public:
static void Append(
CDB^ d_bi,
CDB^ d_bo,
int ignore
)
public:
static void Append(
CDB^ d_bi,
CDB^ d_bo,
int ignore
)
static member Append :
d_bi : CDB *
d_bo : CDB *
ignore : int -> unit
static member Append :
d_bi : CDB *
d_bo : CDB *
ignore : int -> unit
Parameters
- d_bi
- Type: GeoEngine.Core.GXNetCDB
Source Database - d_bo
- Type: GeoEngine.Core.GXNetCDB
Destination Database - ignore
- Type: SystemInt32
Ignore write protection on channels? (TRUE or FALSE)
Remarks
If the source database and destination database have channels
with the same name, then data is appended onto the end
of the channel in lines which have the same number.
If a channel in the destination database is not also in the source
database, it is ignored.
See Also