Click or drag to resize

BasicNoUIObjReceivedAppSyncMessage Event

Occurs when the remote Basic Control/Object receives an app synchronize message.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public event EventHandler<ReceivedAppSyncMessageEventArgs> ReceivedAppSyncMessage

Value

EventHandlerReceivedAppSyncMessageEventArgs

Implements

IBasicNoUIReceivedAppSyncMessage
Remarks
The event handler receives an argument of type ReceivedAppSyncMessageEventArgs.
Property Description
Data Data sent by the remote Basic Control/Object.
Id For a NoUIObj/NoUICtl this is the id for the sender. For a IdeCtl/IdeObj this is the id of the receiver. (The value -1 indicates that all remote Basic controls/objects received this data.)
Example
Synchronize the remote with this data:
private void basicIdeCtl1_ReceivedAppSyncMessage(object sender, ReceivedAppSyncMessageEventArgs e)
{
+}
See Also