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 with no highlight.
public ShowOverload ( ) : void
return void
        public void ShowOverload()
        {
            this.ShowOverload(this._overloadList, -1, 0, -1, -1);
        }

Same methods

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 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