C# Class NppSharp.DoubleClickEventArgs

Arguments for double-click events.
Inheritance: System.EventArgs
Show file Open project: cmrazek/NppSharp Class Usage Examples

Public Methods

Method Description
DoubleClickEventArgs ( int pos, bool ctrl, bool alt, bool shift ) : System

Creates the event arguments object.

Method Details

DoubleClickEventArgs() public method

Creates the event arguments object.
public DoubleClickEventArgs ( int pos, bool ctrl, bool alt, bool shift ) : System
pos int The position where the double-click occurred
ctrl bool A flag indicating if the control key was pressed during the double-click.
alt bool A flag indicating if the alt key was pressed during the double-click.
shift bool A flag indicating if the shift key was pressed during the double-click.
return System