#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
///
/// Provides data for the StyleNeeded event
///
public class StyleNeededEventArgs : EventArgs
{
#region Fields
private Range _range;
#endregion Fields
#region Properties
///
/// Returns the document range that needs styling
///
public Range Range
{
get { return _range; }
}
#endregion Properties
#region Constructors
///
/// Initializes a new instance of the StyleNeededEventArgs class.
///
/// the document range that needs styling
public StyleNeededEventArgs(Range range)
{
_range = range;
}
#endregion Constructors
}
}