Click or drag to resize
CVVUDummyRangeEx Method
Like DummyRangeVVU, with inclusion options for both ends.

Available since Oasis montaj version: 5.0.7
License: Available to anyone.  

Namespace: Geosoft.Desktop.GXNetX
Assembly: geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll)
Notes
If the Inside flag is TRUE, values within the specified range are set to dummy. If the inside flag is FALSE, values outside the range are set to dummy. If the Inclusive flag is TRUE, then dMin and dMax are considered part of the range. If it is FALSE, then < or > are used, and dMin and dMax lie outside the range.
Syntax
public static void DummyRangeEx(
	CGXNETCore gxNetShared,
	CVV vv,
	double min,
	double max,
	int inside,
	int include_min,
	int include_max
)

Parameters

gxNetShared
Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore
vv
Type: GeoEngine.Core.GXNetXCVV
VV handle
min
Type: SystemDouble
Minimum range value
max
Type: SystemDouble
Maximum range value
inside
Type: SystemInt32
If TRUE, dummy inside the range
include_min
Type: SystemInt32
If TRUE, include Min in the range.
include_max
Type: SystemInt32
If TRUE, include Max in the range.
See Also