 | CSYSEnableGXDebugger Method (CGXNETCore, String, String) |
Enable GX Debugger GUI
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void EnableGXDebugger(
CGXNETCore gxNetShared,
string src_dir,
string first_gx
)
public static void EnableGXDebugger(
CGXNETCore gxNetShared,
string src_dir,
string first_gx
)
Public Shared Sub EnableGXDebugger (
gxNetShared As CGXNETCore,
src_dir As String,
first_gx As String
)
Public Shared Sub EnableGXDebugger (
gxNetShared As CGXNETCore,
src_dir As String,
first_gx As String
)
public:
static void EnableGXDebugger(
CGXNETCore^ gxNetShared,
String^ src_dir,
String^ first_gx
)
public:
static void EnableGXDebugger(
CGXNETCore^ gxNetShared,
String^ src_dir,
String^ first_gx
)
static member EnableGXDebugger :
gxNetShared : CGXNETCore *
src_dir : string *
first_gx : string -> unit
static member EnableGXDebugger :
gxNetShared : CGXNETCore *
src_dir : string *
first_gx : string -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - src_dir
- Type: SystemString
Path that will be scanned recursively for GXC source files - first_gx
- Type: SystemString
Name of gx where first breakpoint should be set
Remarks
Takes as input two strings one a path that will be scanned
recursively for GXC source files and a second string without
a path of the GX where the first breakpoint should be set in (i.e. "gxname.gx").
The source of the GX should be found in the path (e.g. <path>\somewhere\gxname.gxc)
and a breakpoint will be set on the first executing line of this GX. Make sure the
GX binary is newer than the source file, otherwise unexpected results may occur. As
soon as the GX is run the GUI will become visible and it will be possible to set more
breakpoints in any of the GXC files found in the path.
See Also