LayoutFarm.Demo.HtmlPanel.GetUIMouseButton C# (CSharp) Method

GetUIMouseButton() static private method

static private GetUIMouseButton ( MouseButtons mouseButton ) : LayoutFarm.UI.UIMouseButtons
mouseButton MouseButtons
return LayoutFarm.UI.UIMouseButtons
        static LayoutFarm.UI.UIMouseButtons GetUIMouseButton(MouseButtons mouseButton)
        {
            switch (mouseButton)
            {
                case MouseButtons.Right:
                    return LayoutFarm.UI.UIMouseButtons.Right;
                case MouseButtons.Middle:
                    return LayoutFarm.UI.UIMouseButtons.Middle;
                case MouseButtons.None:
                    return LayoutFarm.UI.UIMouseButtons.None;
                default:
                    return LayoutFarm.UI.UIMouseButtons.Left;
            }
        }
        ///// <summary>