GM_ProgressCallbackFunc Delegate |
Callback for retrieving progress for a long operation in Global Mapper.
Return 0 from this if you want to cancel the operation.
Namespace:
GlobalMapper.Types
Assembly:
GlobalMapperWrapperNET45 (in GlobalMapperWrapperNET45.dll) Version: 19.1.0.0 (19.1.0.0)
Syntax public delegate byte GM_ProgressCallbackFunc(
uint aOperationIdx,
GM_ProgressUpdate_t8 aUpdateType,
string aStatus,
uint aPercent
)
Public Delegate Function GM_ProgressCallbackFunc (
aOperationIdx As UInteger,
aUpdateType As GM_ProgressUpdate_t8,
aStatus As String,
aPercent As UInteger
) As Byte
public delegate unsigned char GM_ProgressCallbackFunc(
unsigned int aOperationIdx,
GM_ProgressUpdate_t8 aUpdateType,
String^ aStatus,
unsigned int aPercent
)
Parameters
- aOperationIdx
- Type: SystemUInt32
index of operation this progress applies to (useful if nested long operations or multiple threads) - aUpdateType
- Type: GlobalMapper.TypesGM_ProgressUpdate_t8
what kind of progress update is it - aStatus
- Type: SystemString
current status string - aPercent
- Type: SystemUInt32
percent complete
Return Value
Type:
Byte0 from this if you want to cancel the operation.
See Also