Canguro.Commands.View.Selection.ButtonUp C# (CSharp) Méthode

ButtonUp() public méthode

If Right Mouse Button was clicked, then end current selection cycle
public ButtonUp ( Canguro activeView, System e ) : void
activeView Canguro The active View
e System MouseUp event arguments
Résultat void
        public override void ButtonUp(Canguro.View.GraphicView activeView, System.Windows.Forms.MouseEventArgs e)
        {
            // If right Button Click, end current selection cycle
            if (e.Button == System.Windows.Forms.MouseButtons.Right)
                endCycle(null);
        }