LongoMatch.Drawing.SelectionCanvas.HandleRightButton C# (CSharp) Method

HandleRightButton() protected method

protected HandleRightButton ( Point coords, ButtonModifier modif ) : void
coords Point
modif ButtonModifier
return void
        protected virtual void HandleRightButton(Point coords, ButtonModifier modif)
        {
            if (Selections.Count <= 1) {
                ClearSelection ();
                UpdateSelection (GetSelection (coords));
            }
            ShowMenu (coords);
        }