#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
///
/// Provides data for the CharAdded event
///
public class CharAddedEventArgs : EventArgs
{
#region Fields
private char _ch;
#endregion Fields
#region Properties
///
/// Returns the character that was added
///
public char Ch
{
get
{
return _ch;
}
}
#endregion Properties
#region Constructors
///
/// Initializes a new instance of the CharAddedEventArgs class.
///
/// The character that was added
public CharAddedEventArgs(char ch)
{
_ch = ch;
}
#endregion Constructors
}
}