Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

Pattern.Bytes Interface

This interface describes a byte array pattern with optional gaps in it. It may additionally store the type and grouping of numbers stored in an array.

Declaration

interface Pattern.Bytes {
    // Properties
    ${pattern}: Uint8Array;
    ${gaps}?: ${ISelection};
    ${type}?: ${DisplayAs};
    ${group}?: ${GroupBy};
    ${bigEndian}?: boolean;
}
// This interface is not available in managed environment
// This interface is not available in native environment

Pattern.Bytes Properties

pattern

pattern: Uint8Array;
// This property is not available in managed environment
// This property is not available in native environment

Data array

gaps

gaps?: ${ISelection};
// This property is not available in managed environment
// This property is not available in native environment

Optional gaps in a pattern.

type

type?: ${DisplayAs};
// This property is not available in managed environment
// This property is not available in native environment

Type of the pattern values. Used by the pattern editor.

group

group?: ${GroupBy};
// This property is not available in managed environment
// This property is not available in native environment

type?: DisplayAs;

Grouping mode. Used by the pattern editor.

bigEndian

bigEndian?: boolean;
// This property is not available in managed environment
// This property is not available in native environment

true if the pattern was generated from big-endian data. Used by the pattern editor.

@end-interface