 | CDURangeXY Method |
Find the range of X, and Y in the selected lines.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void RangeXY(
CDB db,
ref double x_min,
ref double y_min,
ref double x_max,
ref double y_max
)
public static void RangeXY(
CDB db,
ref double x_min,
ref double y_min,
ref double x_max,
ref double y_max
)
Public Shared Sub RangeXY (
db As CDB,
ByRef x_min As Double,
ByRef y_min As Double,
ByRef x_max As Double,
ByRef y_max As Double
)
Public Shared Sub RangeXY (
db As CDB,
ByRef x_min As Double,
ByRef y_min As Double,
ByRef x_max As Double,
ByRef y_max As Double
)
public:
static void RangeXY(
CDB^ db,
double% x_min,
double% y_min,
double% x_max,
double% y_max
)
public:
static void RangeXY(
CDB^ db,
double% x_min,
double% y_min,
double% x_max,
double% y_max
)
static member RangeXY :
db : CDB *
x_min : float byref *
y_min : float byref *
x_max : float byref *
y_max : float byref -> unit
static member RangeXY :
db : CDB *
x_min : float byref *
y_min : float byref *
x_max : float byref *
y_max : float byref -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database - x_min
- Type: SystemDouble
Minimum X (returned) - y_min
- Type: SystemDouble
Minimum Y (returned) - x_max
- Type: SystemDouble
Maximum X (returned) - y_max
- Type: SystemDouble
Maximum Y (returned)
Remarks
Returns the range in X and Y of the current X and Y channels.
Returned values are dummy if no valid items are found.
See Also