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

ShowOverload() public method

Shows the calltip with overloads
ShowOverload automatically handles displaying a calltip with a list of overloads. It automatically shows the up and down arrows and cycles through the list of overloads in response to mouse clicks.
public ShowOverload ( OverloadList overloadList, int position, uint startIndex, int highlightStart, int highlightEnd ) : void
overloadList OverloadList List of overloads to be displayed see
position int The document position where the calltip should be displayed
startIndex uint The index of the initial overload to display
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 ShowOverload(OverloadList overloadList, int position, uint startIndex, int highlightStart, int highlightEnd)
        {
            this._lastPos = position;
            this._overloadList = overloadList;
            unchecked
            {
                this._overloadList.CurrentIndex = (int)startIndex;
            }
            this._highlightEnd = highlightEnd;
            this._highlightStart = highlightStart;
            this.ShowOverloadInternal();
        }

Same methods

CallTip::ShowOverload ( ) : void
CallTip::ShowOverload ( OverloadList overloadList ) : void
CallTip::ShowOverload ( OverloadList overloadList, int position ) : void
CallTip::ShowOverload ( OverloadList overloadList, int highlightStart, int highlightEnd ) : void
CallTip::ShowOverload ( OverloadList overloadList, int position, int highlightStart, int highlightEnd ) : void
CallTip::ShowOverload ( OverloadList overloadList, uint startIndex ) : void
CallTip::ShowOverload ( OverloadList overloadList, uint startIndex, int highlightStart, int highlightEnd ) : void
CallTip::ShowOverload ( int position ) : void
CallTip::ShowOverload ( int highlightStart, int highlightEnd ) : void
CallTip::ShowOverload ( int position, int highlightStart, int highlightEnd ) : void
CallTip::ShowOverload ( int position, uint startIndex ) : void
CallTip::ShowOverload ( int position, uint startIndex, int highlightStart, int highlightEnd ) : void
CallTip::ShowOverload ( uint startIndex ) : void
CallTip::ShowOverload ( uint startIndex, int highlightStart, int highlightEnd ) : void