Beyond_Beyaan.BBStretchButton.SetToolTip C# (CSharp) Метод

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

public SetToolTip ( string name, string text, int screenWidth, int screenHeight, Random r, string &reason ) : bool
name string
text string
screenWidth int
screenHeight int
r System.Random
reason string
Результат bool
        public bool SetToolTip(string name, string text, int screenWidth, int screenHeight, Random r, out string reason)
        {
            _toolTip = new BBToolTip();
            if (!_toolTip.Initialize(name, text, screenWidth, screenHeight, r, out reason))
            {
                return false;
            }
            return true;
        }