Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the CallTipClickEventArgs class.
 /// </summary>
 /// <param name="callTipArrow">CallTipArrow clicked</param>
 /// <param name="currentIndex">Current posision of the overload list</param>
 /// <param name="newIndex">New position of the overload list</param>
 /// <param name="overloadList">List of overloads to be cycled in the calltip</param>
 /// <param name="highlightStart">Start position of the highlighted text</param>
 /// <param name="highlightEnd">End position of the highlighted text</param>
 public CallTipClickEventArgs(CallTipArrow callTipArrow, int currentIndex, int newIndex, OverloadList overloadList, int highlightStart, int highlightEnd)
 {
     _callTipArrow   = callTipArrow;
     _currentIndex   = currentIndex;
     _newIndex       = newIndex;
     _overloadList   = overloadList;
     _highlightStart = highlightStart;
     _highlightEnd   = highlightEnd;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the CallTipClickEventArgs class.
 /// </summary>
 /// <param name="callTipArrow"></param>
 /// <param name="currentIndex"></param>
 /// <param name="newIndex"></param>
 /// <param name="overloadList"></param>
 /// <param name="highlightStart"></param>
 /// <param name="highlightEnd"></param>
 public CallTipClickEventArgs(CallTipArrow callTipArrow, int currentIndex, int newIndex, OverloadList overloadList, int highlightStart, int highlightEnd)
 {
     _callTipArrow = callTipArrow;
     _currentIndex = currentIndex;
     _newIndex = newIndex;
     _overloadList = overloadList;
     _highlightStart = highlightStart;
     _highlightEnd = highlightEnd;
 }