Determine mouse button in TextField

Is there a way to determine if the left or right mouse button has been pressed in a TextField?

https://documentation.xojo.com/index.php/IsContextualClick
In MouseDown event:

if IsContextualClick then //right click else //left click end if

Thank you Jason.