mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-10 09:56:25 +00:00
21 lines
471 B
C#
21 lines
471 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Be.Windows.Forms
|
|
{
|
|
/// <summary>
|
|
/// Specifies the case of hex characters in the HexBox control
|
|
/// </summary>
|
|
public enum HexCasing
|
|
{
|
|
/// <summary>
|
|
/// Converts all characters to uppercase.
|
|
/// </summary>
|
|
Upper = 0,
|
|
/// <summary>
|
|
/// Converts all characters to lowercase.
|
|
/// </summary>
|
|
Lower = 1
|
|
}
|
|
}
|