 | CDUIImportBIN3 Method (CDB, String, String, String, Int32, Double, CWA) |
Same as ImportBIN2_DU, but returns the name of the imported line.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void IImportBIN3(
CDB db,
string data,
string templ,
ref string line,
int flight,
double date,
CWA wa
)
public static void IImportBIN3(
CDB db,
string data,
string templ,
ref string line,
int flight,
double date,
CWA wa
)
Public Shared Sub IImportBIN3 (
db As CDB,
data As String,
templ As String,
ByRef line As String,
flight As Integer,
date As Double,
wa As CWA
)
Public Shared Sub IImportBIN3 (
db As CDB,
data As String,
templ As String,
ByRef line As String,
flight As Integer,
date As Double,
wa As CWA
)
public:
static void IImportBIN3(
CDB^ db,
String^ data,
String^ templ,
String^% line,
int flight,
double date,
CWA^ wa
)
public:
static void IImportBIN3(
CDB^ db,
String^ data,
String^ templ,
String^% line,
int flight,
double date,
CWA^ wa
)
static member IImportBIN3 :
db : CDB *
data : string *
templ : string *
line : string byref *
flight : int *
date : float *
wa : CWA -> unit
static member IImportBIN3 :
db : CDB *
data : string *
templ : string *
line : string byref *
flight : int *
date : float *
wa : CWA -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database - data
- Type: SystemString
Import data file name - templ
- Type: SystemString
Import template name - line
- Type: SystemString
Optional Line name (on return, the actual line) - flight
- Type: SystemInt32
Optional Flight number - date
- Type: SystemDouble
Optional date - wa
- Type: GeoEngine.Core.GXNetCWA
Remarks
See ImportBIN2_DU. Because the name of the created line is
not necessarily the value passed in (and the value passed in
can be blank), this version returns the name of the line
to which the data is actually imported.
See Also