Beyond_Beyaan.BBTextBox.MouseDown C# (CSharp) Метод

MouseDown() публичный Метод

public MouseDown ( int x, int y ) : bool
x int
y int
Результат bool
        public bool MouseDown(int x, int y)
        {
            if (_allowScrollbar && _scrollbarVisible)
            {
                if (_textScrollBar.MouseDown(x, y))
                {
                    RefreshText();
                    return true;
                }
            }
            return false;
        }