 | CDUExportGeodatabase Method |
Export to a ESRI Geodatabase file.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void ExportGeodatabase(
CDB db,
string feature_class_name,
string cur_line,
CVV chan_vv,
int chan,
int output,
int single,
string data
)
public static void ExportGeodatabase(
CDB db,
string feature_class_name,
string cur_line,
CVV chan_vv,
int chan,
int output,
int single,
string data
)
Public Shared Sub ExportGeodatabase (
db As CDB,
feature_class_name As String,
cur_line As String,
chan_vv As CVV,
chan As Integer,
output As Integer,
single As Integer,
data As String
)
Public Shared Sub ExportGeodatabase (
db As CDB,
feature_class_name As String,
cur_line As String,
chan_vv As CVV,
chan As Integer,
output As Integer,
single As Integer,
data As String
)
public:
static void ExportGeodatabase(
CDB^ db,
String^ feature_class_name,
String^ cur_line,
CVV^ chan_vv,
int chan,
int output,
int single,
String^ data
)
public:
static void ExportGeodatabase(
CDB^ db,
String^ feature_class_name,
String^ cur_line,
CVV^ chan_vv,
int chan,
int output,
int single,
String^ data
)
static member ExportGeodatabase :
db : CDB *
feature_class_name : string *
cur_line : string *
chan_vv : CVV *
chan : int *
output : int *
single : int *
data : string -> unit
static member ExportGeodatabase :
db : CDB *
feature_class_name : string *
cur_line : string *
chan_vv : CVV *
chan : int *
output : int *
single : int *
data : string -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database - feature_class_name
- Type: SystemString
Feature class name - cur_line
- Type: SystemString
Current line - chan_vv
- Type: GeoEngine.Core.GXNetCVV
Displayed channels - chan
- Type: SystemInt32
<define>DU_CHANNELS</define> - output
- Type: SystemInt32
<define>DU_FEATURE_TYPE_OUTPUT</define> - single
- Type: SystemInt32
<define>DU_LINEOUT</define> - data
- Type: SystemString
Export data file name
Remarks
Similar to ExportGBN_DU, with the addition that
Groups go to individual tables, and lines go to
a single table, or individual tables, based on the
value of <define>DU_LINEOUT</define>
See Also