using System;
using System.Collections.Generic;
using System.Text;
namespace Be.Windows.Forms
{
///
/// Specifies the case of hex characters in the HexBox control
///
public enum HexCasing
{
///
/// Converts all characters to uppercase.
///
Upper = 0,
///
/// Converts all characters to lowercase.
///
Lower = 1
}
}