 | CDUExport Method |
Export to a specific format.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void Export(
CDB db,
int format,
string cur_line,
CVV chan_vv,
int chan,
string data,
int dummies,
int header
)
public static void Export(
CDB db,
int format,
string cur_line,
CVV chan_vv,
int chan,
string data,
int dummies,
int header
)
Public Shared Sub Export (
db As CDB,
format As Integer,
cur_line As String,
chan_vv As CVV,
chan As Integer,
data As String,
dummies As Integer,
header As Integer
)
Public Shared Sub Export (
db As CDB,
format As Integer,
cur_line As String,
chan_vv As CVV,
chan As Integer,
data As String,
dummies As Integer,
header As Integer
)
public:
static void Export(
CDB^ db,
int format,
String^ cur_line,
CVV^ chan_vv,
int chan,
String^ data,
int dummies,
int header
)
public:
static void Export(
CDB^ db,
int format,
String^ cur_line,
CVV^ chan_vv,
int chan,
String^ data,
int dummies,
int header
)
static member Export :
db : CDB *
format : int *
cur_line : string *
chan_vv : CVV *
chan : int *
data : string *
dummies : int *
header : int -> unit
static member Export :
db : CDB *
format : int *
cur_line : string *
chan_vv : CVV *
chan : int *
data : string *
dummies : int *
header : int -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database - format
- Type: SystemInt32
<define>DU_EXPORT</define> - cur_line
- Type: SystemString
Current line - chan_vv
- Type: GeoEngine.Core.GXNetCVV
List of channels - channel symbols stored as INT - chan
- Type: SystemInt32
<define>DU_CHANNELS</define> - data
- Type: SystemString
Data file name - dummies
- Type: SystemInt32
Write out dummies? - header
- Type: SystemInt32
Include a header with channel names?
Remarks
For databases with both groups and lines:
If both lines and groups are selected, save only the lines.
If no lines are selected, (only groups), save the current line
if it is (1) a group and (2) selected, else save the first selected
group. ---
Option to filter out data where one of the channels has a dummy in it.
Option to allow a header with the channel names.
The <define>DU_CHANNELS_DISPLAYED</define> option can be used to export any selection of
channels, listed by the symbols (DB_SYMB) values, cast to int values and
stored in a VV.
See Also