 | CDUGetChanDataVV Method |
Populate a VV 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 GetChanDataVV(
CDB db,
int chan,
int mask,
CVV vv
)
public static void GetChanDataVV(
CDB db,
int chan,
int mask,
CVV vv
)
Public Shared Sub GetChanDataVV (
db As CDB,
chan As Integer,
mask As Integer,
vv As CVV
)
Public Shared Sub GetChanDataVV (
db As CDB,
chan As Integer,
mask As Integer,
vv As CVV
)
public:
static void GetChanDataVV(
CDB^ db,
int chan,
int mask,
CVV^ vv
)
public:
static void GetChanDataVV(
CDB^ db,
int chan,
int mask,
CVV^ vv
)
static member GetChanDataVV :
db : CDB *
chan : int *
mask : int *
vv : CVV -> unit
static member GetChanDataVV :
db : CDB *
chan : int *
mask : int *
vv : CVV -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database - chan
- Type: SystemInt32
Channel - mask
- Type: SystemInt32
Mask Channel (can be <define>NULLSYMB</define>) - vv
- Type: GeoEngine.Core.GXNetCVV
VV object to populate
Remarks
Items from all selected lines are collected,
sorted, and duplicates removed.
The data is collected in the channel's data type,
so normal Sort_VV rules apply.
If the output VV and channel type are not the
same, then the data is converted using the
Copy_VV function, so see that for conversion rules.
If a mask channel is selected, then only those items
where the mask channel is not a dummy are collected.
See Also