 | CMETAImportTableCSV Method |
Import a CSV into a class as items.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic void ImportTableCSV(
int ph_class,
string file
)
public void ImportTableCSV(
int ph_class,
string file
)
Public Sub ImportTableCSV (
ph_class As Integer,
file As String
)
Public Sub ImportTableCSV (
ph_class As Integer,
file As String
)
public:
void ImportTableCSV(
int ph_class,
String^ file
)
public:
void ImportTableCSV(
int ph_class,
String^ file
)
member ImportTableCSV :
ph_class : int *
file : string -> unit
member ImportTableCSV :
ph_class : int *
file : string -> unit
Parameters
- ph_class
- Type: SystemInt32
Class to import into - file
- Type: SystemString
Name of CSV file to load
Remarks
Field names in the CSV file that match attribute names in the class will be
imported into table entries in the class. Usually this will be used with
a class created using the hCreateTable_SCHEMA method so that the contents of
class can be viewed as a table.
See Also