OnSendStatusMessage Event
Fired when the operation returns result information.
HRESULT ObjectName_OnSendStatusMessage()
Remarks
This event will be fired after an operation is done.
This is the place to call GetOperationResultSend() method.
Sample
VB Sample:
Dim WithEvents sdkObject As SAWHSDKLib.SAWHAppObject Set sdkObject = New SAWHSDKLib.SAWHAppObject Private Sub sdkObject_OnSendStatusMessage() Dim OperationResultSend As New SAWHOperationResultSend sdkObject.GetOperationResultSend OperationResultSend End Sub |