Enum NumericFormats.HexFormatDecoration
Use this enumeration with the third argument to the fourth (coprehensive) overload of IntegerToHexStr or the second argument to its second overload.
Namespace: WizardWrx
Assembly: WizardWrx.Common.dll
Syntax
[Flags]
public enum HexFormatDecoration : byte
Fields
| Name | Description |
|---|---|
| All_Flags | All glyph flags |
| All_Glyphs | All glyph flags |
| All_Prefixes | All prefix flags |
| All_Suffixes | All suffix flags |
| Glyphs_LC | Use lower case hexadecimal glyphs. |
| Glyphs_UC | Use upper case hexadecimal glyphs. |
| None | Just return the hexadecimal glyphs. |
| Prefix_Oh_LC | Prefix the hexadecimal glyphs with Oh. |
| Prefix_Oh_UC | Prefix the hexadecimal glyphs with OH. |
| Prefix_Ox_LC | Prefix the hexadecimal glyphs with Ox. |
| Prefix_Ox_UC | Prefix the hexadecimal glyphs with OX. |
| Suffix_h_LC | Suffix the hexadecimal glyphs with lower case h. |
| Suffix_h_UC | Suffix the hexadecimal glyphs with upper case h. |