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
C#
                                    public
                                    delegate
                                    byte
                                    GM_ProgressCallbackFunc
                                    (
                                    uint
                                    aOperationIdx
                                    ,
                                    GM_ProgressUpdate_t8
                                    aUpdateType
                                    ,
                                    string
                                    aStatus
                                    ,
                                    uint
                                    aPercent
)
                                

Parameters

aOperationIdx
Type:  System . UInt32
index of operation this progress applies to (useful if nested long operations or multiple threads)
aUpdateType
Type:  GlobalMapper . GM_ProgressUpdate_t8
what kind of progress update is it
aStatus
Type:  System . String
current status string
aPercent
Type:  System . UInt32
percent complete

Return Value

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