C# Class ARCed.Scintilla.CallTipClickEventArgs

Provides data for the CallTipClick event
Inheritance: System.EventArgs
Show file Open project: borisblizzard/arcreator

Public Methods

Method Description
CallTipClickEventArgs ( CallTipArrow callTipArrow, int currentIndex, int newIndex, OverloadList overloadList, int highlightStart, int highlightEnd ) : System

Initializes a new instance of the CallTipClickEventArgs class.

Method Details

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