Click or drag to resize

CVVUDummyRangeEx Method

Like DummyRangeVVU, with inclusion options for both ends.

Namespace:  Geosoft.Desktop.GXNet
Assembly:  geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntax
public static void DummyRangeEx(
	CVV vv,
	double min,
	double max,
	int inside,
	int include_min,
	int include_max
)

public static void DummyRangeEx(
	CVV vv,
	double min,
	double max,
	int inside,
	int include_min,
	int include_max
)

Parameters

vv
Type: GeoEngine.Core.GXNetCVV
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.
Remarks
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.
See Also