ARCed.Scintilla.CallTip.CallTip C# (CSharp) Method

CallTip() private method

private CallTip ( Scintilla scintilla ) : System.ComponentModel
scintilla Scintilla
return System.ComponentModel
        internal CallTip(Scintilla scintilla)
            : base(scintilla)
        {
            //	Go ahead and enable this. It's all pretty idiosyncratic IMO. For one
            //	thing you can't turn it off. We set the CallTip styles by default
            //	anyhow.
            NativeScintilla.CallTipUseStyle(10);
            Scintilla.BeginInvoke(new MethodInvoker(delegate
            {
                this.HighlightTextColor = this.HighlightTextColor;
                this.ForeColor = this.ForeColor;
                this.BackColor = this.BackColor;
            }));
        }