|  | CDUExportSHP Method  | 
 Export to a shape file or files.
 
    Namespace: 
   Geosoft.Desktop.GXNet
    Assembly:
   geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2025.1.0.25
 Syntax
Syntaxpublic static void ExportSHP(
	CDB db,
	string cur_line,
	CVV chan_vv,
	int chan,
	int single,
	string data,
	CLST lst
)
public static void ExportSHP(
	CDB db,
	string cur_line,
	CVV chan_vv,
	int chan,
	int single,
	string data,
	CLST lst
)
Public Shared Sub ExportSHP ( 
	db As CDB,
	cur_line As String,
	chan_vv As CVV,
	chan As Integer,
	single As Integer,
	data As String,
	lst As CLST
)
Public Shared Sub ExportSHP ( 
	db As CDB,
	cur_line As String,
	chan_vv As CVV,
	chan As Integer,
	single As Integer,
	data As String,
	lst As CLST
)
public:
static void ExportSHP(
	CDB^ db, 
	String^ cur_line, 
	CVV^ chan_vv, 
	int chan, 
	int single, 
	String^ data, 
	CLST^ lst
)
public:
static void ExportSHP(
	CDB^ db, 
	String^ cur_line, 
	CVV^ chan_vv, 
	int chan, 
	int single, 
	String^ data, 
	CLST^ lst
)
static member ExportSHP : 
        db : CDB * 
        cur_line : string * 
        chan_vv : CVV * 
        chan : int * 
        single : int * 
        data : string * 
        lst : CLST -> unit 
static member ExportSHP : 
        db : CDB * 
        cur_line : string * 
        chan_vv : CVV * 
        chan : int * 
        single : int * 
        data : string * 
        lst : CLST -> unit 
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
 Database
- cur_line
- Type: SystemString
 Current line
- chan_vv
- Type: GeoEngine.Core.GXNetCVV
 Displayed channels
- chan
- Type: SystemInt32
 <define>DU_CHANNELS</define>
- single
- Type: SystemInt32
 <define>DU_LINEOUT</define>
- data
- Type: SystemString
 Export shape file name or base filename (shp assumed if no extension given)
- lst
- Type: GeoEngine.Core.GXNetCLST
 LST object will be filled with shape files created
 Remarks
Remarks
Similar to ExportMDB_DU, with the addition that groups go to indiviual files
with group name suffixes, and lines go to a single file, or multiple files
with line name suffixes, based on the value of <define>DU_LINEOUT</define>.
 See Also
See Also