#region Using Directives
using System;
using System.Collections.Generic;
using System.Text;
#endregion Using Directives
namespace ScintillaNET
{
///
/// Provides data for the , , and
/// events.
///
public class HotspotClickEventArgs : EventArgs
{
#region Fields
private int _position;
#endregion Fields
#region Properties
///
/// Gets the byte offset in the document of the character that was clicked.
///
/// An representing the byte offset in the document of the character that was clicked.
public int Position
{
get
{
return _position;
}
}
#endregion Properties
#region Constructors
///
/// Initializes a new instance of the class.
///
/// The byte offset in the document of the character that was clicked.
public HotspotClickEventArgs(int position)
{
_position = position;
}
#endregion Constructors
}
}