delegate to called to handle progress project loading
Namespace:
EGIS.Controls
Assembly:
EGIS.Controls (in EGIS.Controls.dll)
Syntax
Visual Basic |
---|
Public Delegate Sub ProgressLoadStatusHandler ( _
totalLayers As Integer, _
numberLayersLoaded As Integer _
) |
C# |
---|
public delegate void ProgressLoadStatusHandler(
int totalLayers,
int numberLayersLoaded
) |
Visual C++ |
---|
public delegate void ProgressLoadStatusHandler(
int totalLayers,
int numberLayersLoaded
) |
JavaScript |
---|
function(totalLayers, numberLayersLoaded); |
Parameters
- totalLayers
- Type: System..::..Int32
- numberLayersLoaded
- Type: System..::..Int32
See Also