Flood.GUI.Controls.TextBox.OnTextChanged C# (CSharp) Method

OnTextChanged() protected method

Handler for text changed event.
protected OnTextChanged ( ) : void
return void
        protected override void OnTextChanged()
        {
            base.OnTextChanged();

            if (m_CursorPos > TextLength) m_CursorPos = TextLength;
            if (m_CursorEnd > TextLength) m_CursorEnd = TextLength;

            if (TextChanged != null)
                TextChanged.Invoke(this);
        }