 | CDUGetChanDataLST Method |
Populate a LST with unique items in a channel.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void GetChanDataLST(
CDB db,
int chan,
int mask,
CLST lst
)
public static void GetChanDataLST(
CDB db,
int chan,
int mask,
CLST lst
)
Public Shared Sub GetChanDataLST (
db As CDB,
chan As Integer,
mask As Integer,
lst As CLST
)
Public Shared Sub GetChanDataLST (
db As CDB,
chan As Integer,
mask As Integer,
lst As CLST
)
public:
static void GetChanDataLST(
CDB^ db,
int chan,
int mask,
CLST^ lst
)
public:
static void GetChanDataLST(
CDB^ db,
int chan,
int mask,
CLST^ lst
)
static member GetChanDataLST :
db : CDB *
chan : int *
mask : int *
lst : CLST -> unit
static member GetChanDataLST :
db : CDB *
chan : int *
mask : int *
lst : CLST -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database - chan
- Type: SystemInt32
Data Channel - mask
- Type: SystemInt32
Mask Channel (can be <define>NULLSYMB</define>) - lst
- Type: GeoEngine.Core.GXNetCLST
LST object to populate
Remarks
Items from all selected lines are collected,
sorted, and duplicates removed. The output
LST name and value are set to the item values.
Non-string channels are converted internally to
string values using Copy_VV,
so results may differ from what
you may expect given the current channel's display
width and number of decimals.
If a mask channel is selected, then only those items
where the mask channel is not a dummy are collected.
See Also