Detect right click in Desktop

In a web application, MouseEvent allows to know if right click is pressed.

If there is a way to distinguish a left to a right click in Desktop applications ?

in mouse down event use

If IsContextualClick Then

End if

[quote=89853:@Russ Lunn]in mouse down event use

If IsContextualClick Then

End if[/quote]

Great. Thank you :slight_smile:

The good thing about this is that it triggers with ctrl-click as well as right-click, which are both ways to trigger the contextual menu on mac.

Indeed it is good. I asked when I realized I did not know how to do that in Desktop…