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

Show() public method

Displays a calltip without overloads
The Message must already be populated. The calltip will be displayed at the current document position
public Show ( int highlightStart, int highlightEnd ) : void
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(int highlightStart, int highlightEnd)
        {
            this.Show(this._message, -1, highlightStart, highlightEnd);
        }

Same methods

CallTip::Show ( ) : void
CallTip::Show ( int position ) : 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
CallTip::Show ( string message, int position, int highlightStart, int highlightEnd ) : void