//
// HexView.cs: A hexadecimal viewer
//
// TODO:
// - Support searching and highlighting of the search result
// - Bug showing the last line
//
using System;
namespace Terminal.Gui {
///
/// Defines the event arguments for event.
///
public class HexViewEditEventArgs : EventArgs {
///
/// Creates a new instance of the class.
///
///
///
public HexViewEditEventArgs (long position, byte newValue)
{
Position = position;
NewValue = newValue;
}
///
/// Gets the location of the edit.
///
public long Position { get; }
///
/// Gets the new value for that .
///
public byte NewValue { get; }
}
}