  | CVVUiFindDummy Method  | 
 Find the first dummy|non-dummy value in VV
 
    Namespace: 
   Geosoft.Desktop.GXNetX
    Assembly:
   geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2025.1.0.25
Syntaxpublic static int iFindDummy(
	CGXNETCore gxNetShared,
	CVV vv,
	int dir,
	int type,
	int start,
	int end
)
public static int iFindDummy(
	CGXNETCore gxNetShared,
	CVV vv,
	int dir,
	int type,
	int start,
	int end
)
Public Shared Function iFindDummy ( 
	gxNetShared As CGXNETCore,
	vv As CVV,
	dir As Integer,
	type As Integer,
	start As Integer,
	end As Integer
) As Integer
Public Shared Function iFindDummy ( 
	gxNetShared As CGXNETCore,
	vv As CVV,
	dir As Integer,
	type As Integer,
	start As Integer,
	end As Integer
) As Integer
public:
static int iFindDummy(
	CGXNETCore^ gxNetShared, 
	CVV^ vv, 
	int dir, 
	int type, 
	int start, 
	int end
)
public:
static int iFindDummy(
	CGXNETCore^ gxNetShared, 
	CVV^ vv, 
	int dir, 
	int type, 
	int start, 
	int end
)
static member iFindDummy : 
        gxNetShared : CGXNETCore * 
        vv : CVV * 
        dir : int * 
        type : int * 
        start : int * 
        end : int -> int 
static member iFindDummy : 
        gxNetShared : CGXNETCore * 
        vv : CVV * 
        dir : int * 
        type : int * 
        start : int * 
        end : int -> int 
Parameters
- gxNetShared
 - Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - vv
 - Type: GeoEngine.Core.GXNetXCVV
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