C# Class ARCed.Scintilla.MarginClickEventArgs

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

Public Methods

Method Description
MarginClickEventArgs ( Keys modifiers, int position, Line line, Margin margin, int toggleMarkerNumber, bool toggleFold ) : System

Initializes a new instance of the MarginClickEventArgs class.

Method Details

MarginClickEventArgs() public method

Initializes a new instance of the MarginClickEventArgs class.
public MarginClickEventArgs ( Keys modifiers, int position, Line line, Margin margin, int toggleMarkerNumber, bool toggleFold ) : System
modifiers Keys /// Any Modifier keys (shift, alt, ctrl) that were in use at the /// time the click event occured ///
position int Document position of the line where the click occured
line Line Document line # where the click occured
margin Margin Margin where the click occured
toggleMarkerNumber int marker number that should be toggled in result of the click
toggleFold bool Whether the fold at the current line should be toggled
return System