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

Show() public method

Displays a calltip without overloads
public Show ( string message, int position, int highlightStart, int highlightEnd ) : void
message string The calltip message to be displayed
position int The document position to show the calltip
highlightStart int Start posision of the part of the message that should be selected
highlightEnd int End posision of the part of the message that should be selected
return void
        public void Show(string message, int position, int highlightStart, int highlightEnd)
        {
            this._lastPos = position;
            if (position < 0)
                position = NativeScintilla.GetCurrentPos();

            this._overloadList = null;
            this._message = message;
            NativeScintilla.CallTipShow(position, message);
            this.HighlightStart = highlightStart;
            this.HighlightEnd = highlightEnd;
        }

Same methods

CallTip::Show ( ) : void
CallTip::Show ( int position ) : void
CallTip::Show ( int highlightStart, int highlightEnd ) : void
CallTip::Show ( int position, int highlightStart, int highlightEnd ) : void
CallTip::Show ( string message ) : void
CallTip::Show ( string message, int position ) : void
CallTip::Show ( string message, int highlightStart, int highlightEnd ) : void