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

SetForeColorInternal() private method

private SetForeColorInternal ( Color value ) : void
value System.Drawing.Color
return void
        internal void SetForeColorInternal(Color value)
        {
            if (value == SystemColors.InfoText)
                Scintilla.ColorBag.Remove("CallTip.ForeColor");
            else
                Scintilla.ColorBag["CallTip.ForeColor"] = value;

            NativeScintilla.CallTipSetFore(Utilities.ColorToRgb(value));
        }