Click or drag to resize

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
Assembly:  GlobalMapperWrapperNET (in GlobalMapperWrapperNET.dll) Version: 19.1.0.0 (19.1.0.0)
Syntax
C#
public delegate byte GM_ProgressCallbackFunc(
	uint aOperationIdx,
	GM_ProgressUpdate_t8 aUpdateType,
	string aStatus,
	uint aPercent
)

Parameters

aOperationIdx
Type: SystemUInt32
index of operation this progress applies to (useful if nested long operations or multiple threads)
aUpdateType
Type: GlobalMapperGM_ProgressUpdate_t8
what kind of progress update is it
aStatus
Type: SystemString
current status string
aPercent
Type: SystemUInt32
percent complete

Return Value

Type: Byte
0 from this if you want to cancel the operation.
See Also