 | CSYSiProgState Method |
Return current progress state (On/Off)
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static int iProgState(
CGXNETCore gxNetShared
)
public static int iProgState(
CGXNETCore gxNetShared
)
Public Shared Function iProgState (
gxNetShared As CGXNETCore
) As Integer
Public Shared Function iProgState (
gxNetShared As CGXNETCore
) As Integer
public:
static int iProgState(
CGXNETCore^ gxNetShared
)
public:
static int iProgState(
CGXNETCore^ gxNetShared
)
static member iProgState :
gxNetShared : CGXNETCore -> int
static member iProgState :
gxNetShared : CGXNETCore -> int
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore
Return Value
Type:
Int32
Remarks
This is useful, for instance, when calling one GX from another,
especially if it is called multiple times in a loop.
The called GX may turn the progress ON/OFF on its own, which
means any progress tracking in the calling GX is disrupted.
The called GX should use this function to determine the original
progress state, and not turn off progress if it was already on.
Returns 0 - Progress is on
- Progress is off
See Also