 | CSYSiProgState Method |
Return current progress state (On/Off)
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static int iProgState()
public static int iProgState()
Public Shared Function iProgState As Integer
Public Shared Function iProgState As Integer
public:
static int iProgState()
public:
static int iProgState()
static member iProgState : unit -> int
static member iProgState : unit -> int
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