 | CVVUiFindDummy Method |
Find the first dummy|non-dummy value in VV
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static int iFindDummy(
CVV vv,
int dir,
int type,
int start,
int end
)
public static int iFindDummy(
CVV vv,
int dir,
int type,
int start,
int end
)
Public Shared Function iFindDummy (
vv As CVV,
dir As Integer,
type As Integer,
start As Integer,
end As Integer
) As Integer
Public Shared Function iFindDummy (
vv As CVV,
dir As Integer,
type As Integer,
start As Integer,
end As Integer
) As Integer
public:
static int iFindDummy(
CVV^ vv,
int dir,
int type,
int start,
int end
)
public:
static int iFindDummy(
CVV^ vv,
int dir,
int type,
int start,
int end
)
static member iFindDummy :
vv : CVV *
dir : int *
type : int *
start : int *
end : int -> int
static member iFindDummy :
vv : CVV *
dir : int *
type : int *
start : int *
end : int -> int
Parameters
- vv
- Type: GeoEngine.Core.GXNetCVV
VV handle - dir
- Type: SystemInt32
0 increasing order 1 decreasing order - type
- Type: SystemInt32
0 to find the first dummy 1 find first non-dummy - start
- Type: SystemInt32
Start search range at element - end
- Type: SystemInt32
End search range at element (-1 for last)
Return Value
Type:
Int32
The index of the first dummy|non-dummy value in VV
-1 if not found or if length of VV is 0
Remarks
Start and end of range are always defined lowest
to largest even if decreasing search order. To search
entire VV range, specify 0,-1.
See Also