  | CMVUPathPlot Method  | 
 Draw a flight line
 
    Namespace: 
   GeoEngine.Core.GXNetX
    Assembly:
   geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2025.1.0.25
Syntaxpublic static void PathPlot(
	CGXNETCore gxNetShared,
	CMVIEW mview,
	CVV vv_x,
	CVV vv_y,
	string line,
	int locate,
	double vangle,
	int up,
	double loff,
	double voff,
	double gap
)
public static void PathPlot(
	CGXNETCore gxNetShared,
	CMVIEW mview,
	CVV vv_x,
	CVV vv_y,
	string line,
	int locate,
	double vangle,
	int up,
	double loff,
	double voff,
	double gap
)
Public Shared Sub PathPlot ( 
	gxNetShared As CGXNETCore,
	mview As CMVIEW,
	vv_x As CVV,
	vv_y As CVV,
	line As String,
	locate As Integer,
	vangle As Double,
	up As Integer,
	loff As Double,
	voff As Double,
	gap As Double
)
Public Shared Sub PathPlot ( 
	gxNetShared As CGXNETCore,
	mview As CMVIEW,
	vv_x As CVV,
	vv_y As CVV,
	line As String,
	locate As Integer,
	vangle As Double,
	up As Integer,
	loff As Double,
	voff As Double,
	gap As Double
)
public:
static void PathPlot(
	CGXNETCore^ gxNetShared, 
	CMVIEW^ mview, 
	CVV^ vv_x, 
	CVV^ vv_y, 
	String^ line, 
	int locate, 
	double vangle, 
	int up, 
	double loff, 
	double voff, 
	double gap
)
public:
static void PathPlot(
	CGXNETCore^ gxNetShared, 
	CMVIEW^ mview, 
	CVV^ vv_x, 
	CVV^ vv_y, 
	String^ line, 
	int locate, 
	double vangle, 
	int up, 
	double loff, 
	double voff, 
	double gap
)
static member PathPlot : 
        gxNetShared : CGXNETCore * 
        mview : CMVIEW * 
        vv_x : CVV * 
        vv_y : CVV * 
        line : string * 
        locate : int * 
        vangle : float * 
        up : int * 
        loff : float * 
        voff : float * 
        gap : float -> unit 
static member PathPlot : 
        gxNetShared : CGXNETCore * 
        mview : CMVIEW * 
        vv_x : CVV * 
        vv_y : CVV * 
        line : string * 
        locate : int * 
        vangle : float * 
        up : int * 
        loff : float * 
        voff : float * 
        gap : float -> unit 
Parameters
- gxNetShared
 - Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - mview
 - Type: GeoEngine.Core.GXNetXCMVIEW
View - vv_x
 - Type: GeoEngine.Core.GXNetXCVV
X - vv_y
 - Type: GeoEngine.Core.GXNetXCVV
Y - line
 - Type: SystemString
Line label - locate
 - Type: SystemInt32
<define>MVU_FLIGHT_LOCATE</define> - vangle
 - Type: SystemDouble
Lines steeper than this angle are considered vertical and the up label direction is used. - up
 - Type: SystemInt32
Up label direction:   1 up is right -1 up is left - loff
 - Type: SystemDouble
Along line label offset in mm. - voff
 - Type: SystemDouble
Perpendicular label offset mm. - gap
 - Type: SystemDouble
Maximum gap before breaking line, 0.0 for no breaks. 
Remarks
See FlightPlot_MVU.  This is the same except for the
additional line gap parameter.
See Also