//private void SBOApplication_FormDataEvent(ref SAPbouiCOM.BusinessObjectInfo BusinessObjectInfo, out bool BubbleEvent) //{ // SBOEventHandler oSBOEventHandler = new SBOEventHandler(oSBOApplication, oSBOCompany); // oSBOEventHandler.HandleFormDataEvent(ref BusinessObjectInfo, out BubbleEvent); //} private void SBOApplication_RightClickEvent(ref SAPbouiCOM.ContextMenuInfo eventInfo, out bool BubbleEvent) { SBOEventHandler oSBOEventHandler = new SBOEventHandler(oSBOApplication, oSBOCompany); oSBOEventHandler.HandleRightClickEvent(ref eventInfo, out BubbleEvent); }
private void SBOApplication_MenuEvent(ref SAPbouiCOM.MenuEvent pVal, out bool BubbleEvent) { SBOEventHandler oSBOEventHandler = new SBOEventHandler(oSBOApplication, oSBOCompany); oSBOEventHandler.HandleMenuEvent(ref pVal, out BubbleEvent); }
private void SBOApplication_ItemEvent(string FormUID, ref SAPbouiCOM.ItemEvent pVal, out bool BubbleEvent) { SBOEventHandler oSBOEventHandler = new SBOEventHandler(oSBOApplication, oSBOCompany); oSBOEventHandler.HandleItemEvent(FormUID, ref pVal, out BubbleEvent); }
private void SBOApplication_AppEvent(SAPbouiCOM.BoAppEventTypes EventType) { SBOEventHandler oSBOEventHandler = new SBOEventHandler(oSBOApplication, oSBOCompany); oSBOEventHandler.HandleAppEvent(EventType); }