online source control
back to content
sign up free version control plan

OnSendStatusMessage Event

Description

Fired when the operation returns result information.

Syntax

HRESULT ObjectName_OnSendStatusMessage()

Remarks

This event will be fired after an operation is done.

This is the place to call GetOperationResultSend() method.

See Also

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