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. The ARCed.Scintilla.OverloadList must already be populated. It will be displayed at the current document position starting at overload 0
public ShowOverload ( 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 ShowOverload(int highlightStart, int highlightEnd)
        {
            this.ShowOverload(this._overloadList, -1, 0, highlightStart, highlightEnd);
        }

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, int position, uint startIndex, 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 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