forked from jacobslusser/ScintillaNET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMarginClickEventArgs.cs
More file actions
60 lines (54 loc) · 2.29 KB
/
MarginClickEventArgs.cs
File metadata and controls
60 lines (54 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ScintillaNET
{
/// <summary>
/// Provides data for the <see cref="Scintilla.MarginClick" /> event.
/// </summary>
public class MarginClickEventArgs : EventArgs
{
private readonly Scintilla scintilla;
private readonly int bytePosition;
private int? position;
/// <summary>
/// Gets the margin clicked.
/// </summary>
/// <returns>The zero-based index of the clicked margin.</returns>
public int Margin { get; private set; }
/// <summary>
/// Gets the modifier keys (SHIFT, CTRL, ALT) held down when the margin was clicked.
/// </summary>
/// <returns>A bitwise combination of the Keys enumeration indicating the modifier keys.</returns>
public Keys Modifiers { get; private set; }
/// <summary>
/// Gets the zero-based document position where the line ajacent to the clicked margin starts.
/// </summary>
/// <returns>The zero-based character position within the document of the start of the line adjacent to the margin clicked.</returns>
public int Position
{
get
{
if (position == null)
position = scintilla.Lines.ByteToCharPosition(bytePosition);
return (int)position;
}
}
/// <summary>
/// Initializes a new instance of the <see cref="MarginClickEventArgs" /> class.
/// </summary>
/// <param name="scintilla">The <see cref="Scintilla" /> control that generated this event.</param>
/// <param name="modifiers">The modifier keys that where held down at the time of the margin click.</param>
/// <param name="bytePosition">The zero-based byte position within the document where the line adjacent to the clicked margin starts.</param>
/// <param name="margin">The zero-based index of the clicked margin.</param>
public MarginClickEventArgs(Scintilla scintilla, Keys modifiers, int bytePosition, int margin)
{
this.scintilla = scintilla;
this.bytePosition = bytePosition;
Modifiers = modifiers;
Margin = margin;
}
}
}