OpenTween.TweenMain.doQuoteOfficial C# (CSharp) Method

doQuoteOfficial() private method

private doQuoteOfficial ( ) : void
return void
        private void doQuoteOfficial()
        {
            if (this.ExistCurrentPost)
            {
                if (_curPost.IsDm ||
                    !StatusText.Enabled) return;

                if (_curPost.IsProtect)
                {
                    MessageBox.Show("Protected.");
                    return;
                }

                StatusText.Text = " " + MyCommon.GetStatusUrl(_curPost);

                this.inReplyTo = null;

                StatusText.SelectionStart = 0;
                StatusText.Focus();
            }
        }
TweenMain