HexStyle Enumeration

Hexadecimal Layout Styles.

Definition

Namespace: Html
Assembly: Html (in Html.dll) Version: 25.2822.3845
C#
[FlagsAttribute]
public enum HexStyle

Members

Default0 Use the Default Hex Layout.
SingleKey1 Return the value as a single Hexadecimal Key.
Delimited2 Return the value as delimited bytes.
GUID4 Return the Single Key value formatted as a GUID as in {5d99525d-4e27-4a48-b097-b7f587418a3e}.
Prefix8 Return the value with the Hex prefix (0x).
Space16 Separate Delimited Values with a space.
Comma32 Seperate Delimited Values with a comma.
Numeric64 Input is in numeric form.
Byte128 Values are expressed as single bytes.
Word256 Values are expressed as double-byte words.
DoubleWord512 Values are expressed as double-words.
Fill1,024 Fill the return string with the full size of the input value.

See Also