 | CLTB.CreateEx Method |
Creates a LTB object from a file.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static CLTB CreateEx(
CGXNETCore gxNetShared,
string file,
int type,
int delim,
int case_sensitive,
string key
)
public static CLTB CreateEx(
CGXNETCore gxNetShared,
string file,
int type,
int delim,
int case_sensitive,
string key
)
Public Shared Function CreateEx (
gxNetShared As CGXNETCore,
file As String,
type As Integer,
delim As Integer,
case_sensitive As Integer,
key As String
) As CLTB
Public Shared Function CreateEx (
gxNetShared As CGXNETCore,
file As String,
type As Integer,
delim As Integer,
case_sensitive As Integer,
key As String
) As CLTB
public:
static CLTB^ CreateEx(
CGXNETCore^ gxNetShared,
String^ file,
int type,
int delim,
int case_sensitive,
String^ key
)
public:
static CLTB^ CreateEx(
CGXNETCore^ gxNetShared,
String^ file,
int type,
int delim,
int case_sensitive,
String^ key
)
static member CreateEx :
gxNetShared : CGXNETCore *
file : string *
type : int *
delim : int *
case_sensitive : int *
key : string -> CLTB
static member CreateEx :
gxNetShared : CGXNETCore *
file : string *
type : int *
delim : int *
case_sensitive : int *
key : string -> CLTB
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetX.CGXNETCore
A shared CGXNETCore - file
- Type: System.String
File name, .csv assumed, searched locally then in GEOSOFT. - type
- Type: System.Int32
<define>LTB_TYPE</define> - delim
- Type: System.Int32
<define>LTB_DELIM</define> - case_sensitive
- Type: System.Int32
<define>LTB_CASE</define> - key
- Type: System.String
Key to find if only one record required, "" to read entire table.
Return Value
Type:
CLTB
x - Handle to LTB object
NULL - Error of some kind
RemarksIf the file has no header, field names are assumed to be "0", "1", etc.
See Also