ARCed.Scintilla.CallTipClickEventArgs.CallTipClickEventArgs C# (CSharp) Method

CallTipClickEventArgs() public method

Initializes a new instance of the CallTipClickEventArgs class.
public CallTipClickEventArgs ( CallTipArrow callTipArrow, int currentIndex, int newIndex, OverloadList overloadList, int highlightStart, int highlightEnd ) : System
callTipArrow CallTipArrow CallTipArrow clicked
currentIndex int Current posision of the overload list
newIndex int New position of the overload list
overloadList OverloadList List of overloads to be cycled in the calltip
highlightStart int Start position of the highlighted text
highlightEnd int End position of the highlighted text
return System
        public CallTipClickEventArgs(CallTipArrow callTipArrow, int currentIndex, int newIndex, OverloadList overloadList, int highlightStart, int highlightEnd)
        {
            this._callTipArrow = callTipArrow;
            this._currentIndex = currentIndex;
            this._newIndex = newIndex;
            this._overloadList = overloadList;
            this._highlightStart = highlightStart;
            this._highlightEnd = highlightEnd;
        }
CallTipClickEventArgs