Elements Gestures c#

Elements Gestures c#

Hi Support !

I use Element gestures (till now i only used "tab")
So if i implement element gestures like this:

example for test:
 IProject AP = null;
 public void Start(IProject context, IBehavior behavior)
 {    
     context.ScreenCollection.ElementGesture += ScreenCollection_ElementGesture;
     AP = context;   
 }

 private void ScreenCollection_ElementGesture(object sender, ElementGestureEventArgs e)
 { 
     var obj = e.Element;
     ZenHelper.Helper.StartMsgBoxOk(AP, e.Element.Name.ToString() +       e.InteractionContextOutput.ToString());
 }

It works but how to add or divide gestures for tab, double tab etc?
in editor are available more :


thanks for advance!