 | CMVIEWScaleWindow Method |
Assign view coordinates to define a window.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void ScaleWindow(
double min_x,
double min_y,
double max_x,
double max_y,
double bot_x,
double bot_y,
double x_scal,
double y_scal
)
public void ScaleWindow(
double min_x,
double min_y,
double max_x,
double max_y,
double bot_x,
double bot_y,
double x_scal,
double y_scal
)
Public Sub ScaleWindow (
min_x As Double,
min_y As Double,
max_x As Double,
max_y As Double,
bot_x As Double,
bot_y As Double,
x_scal As Double,
y_scal As Double
)
Public Sub ScaleWindow (
min_x As Double,
min_y As Double,
max_x As Double,
max_y As Double,
bot_x As Double,
bot_y As Double,
x_scal As Double,
y_scal As Double
)
public:
void ScaleWindow(
double min_x,
double min_y,
double max_x,
double max_y,
double bot_x,
double bot_y,
double x_scal,
double y_scal
)
public:
void ScaleWindow(
double min_x,
double min_y,
double max_x,
double max_y,
double bot_x,
double bot_y,
double x_scal,
double y_scal
)
member ScaleWindow :
min_x : float *
min_y : float *
max_x : float *
max_y : float *
bot_x : float *
bot_y : float *
x_scal : float *
y_scal : float -> unit
member ScaleWindow :
min_x : float *
min_y : float *
max_x : float *
max_y : float *
bot_x : float *
bot_y : float *
x_scal : float *
y_scal : float -> unit
Parameters
- min_x
- Type: SystemDouble
X minimum in view coordinates - min_y
- Type: SystemDouble
Y minimum - max_x
- Type: SystemDouble
X maximum - max_y
- Type: SystemDouble
Y maximum - bot_x
- Type: SystemDouble
X minimum in plot coordinates - bot_y
- Type: SystemDouble
Y minimum - x_scal
- Type: SystemDouble
Horizontal scale (view unit/plot unit in mm) - y_scal
- Type: SystemDouble
Vertical scale
Remarks
The provided coordinates are converted to map mm
using the current view translation and scaling.
SetWindow is effectively called.
See Also