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. The overload at position 0 will be displayed with no highlight.
public ShowOverload ( int position ) : void
position int The document position where the calltip should be displayed
return void
        public void ShowOverload(int position)
        {
            this.ShowOverload(this._overloadList, position, 0, -1, -1);
        }

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