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

Show() public method

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

Same methods

CallTip::Show ( ) : void
CallTip::Show ( int position ) : void
CallTip::Show ( 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