 | CEMAPDrawLine Method |
Draws a line on the current map.
Namespace:
Geosoft.Desktop.GXNetX
Assembly:
geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void DrawLine(
double min_x,
double min_y,
double max_x,
double max_y
)
public void DrawLine(
double min_x,
double min_y,
double max_x,
double max_y
)
Public Sub DrawLine (
min_x As Double,
min_y As Double,
max_x As Double,
max_y As Double
)
Public Sub DrawLine (
min_x As Double,
min_y As Double,
max_x As Double,
max_y As Double
)
public:
void DrawLine(
double min_x,
double min_y,
double max_x,
double max_y
)
public:
void DrawLine(
double min_x,
double min_y,
double max_x,
double max_y
)
member DrawLine :
min_x : float *
min_y : float *
max_x : float *
max_y : float -> unit
member DrawLine :
min_x : float *
min_y : float *
max_x : float *
max_y : float -> unit
Parameters
- min_x
- Type: SystemDouble
X1 - min_y
- Type: SystemDouble
Y1 - max_x
- Type: SystemDouble
X2 - max_y
- Type: SystemDouble
Y2
Remarks
Locations are in the current view user units.
The line is temporary and will disappear on the next
screen refresh. This function is for you to provide
interactive screen feedback to your user.
See Also