System.LongBool

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type LongBool = False..Boolean(4294967295);

C++

typedef int                  LongBool;           //

Properties

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

Description

Represents a 32-bit predefined Boolean type.

Boolean values are denoted by the predefined constants True and False. A LongBool value is considered False when its ordinality is 0, and True otherwise.

A LongBool variable occupies 4 bytes of memory.

Note: The ByteBool, WordBool, and LongBool types exist to provide compatibility with other languages and operating system libraries.

See Also