Description
Contains information about the current Web message event, which is an ItemEvent of type et_ITEM_WEBMESSAGE.
Example
| Receiving a Web message by WebMessageEvent (C#) | Copy Code |
|---|
private void SBO_Application_ItemEvent(string FormUID, ref SAPbouiCOM.ItemEvent pVal, out bool BubbleEvent) { if (pVal.EventType == SAPbouiCOM.BoEventTypes.et_ITEM_WEBMESSAGE) { SAPbouiCOM.WebMessageEvent webMessageEvent = pVal as SAPbouiCOM.WebMessageEvent; if (webMessageEvent != null) { string webmessage = webMessageEvent.WebMessage; } } BubbleEvent = true; } |
|
See Also