Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
50
Knowing the difference between drag and drop and Ctrl Drag and drop
posted

Hello, I am trapping the AppointmentsDragDrop event on an UltraMonthSingleView control.  It gets fired when I release the mouse after the drag and drop, which is great.  I can't seem to figure out how to know if I did a simple drag and drop (to move an appt) or a CTRL drag and drop (to copy the appt).  How do I know the difference, or is there a better event that I should be using to trap moves and copies?

Thanks!

Chris

Parents
  • 2765
    posted

    I would use Keydown event as well. Since by pressing CTRL will trigger Keydown event, i would set a variable and then will check for this variable in AppointmentsDragComplete event to determine if CTRL was pressed.

Reply Children