System.Byte

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type Byte = 0..255;

C++

typedef unsigned char        Byte;             // 0..255

Properties

Type Visibility Source Unit Parent
type
typedef
public
System.pas
sysmac.h
System System

Description

Represents an 8-bit unsigned integer type.

Byte represents a subset of the Cardinal type. The range for the Byte type is from 0 through 255.

The size of Byte is 8 bits across all 64-bit and 32-bit platforms.

See Also