Unit StateFormUnit

Uses
Classes, Interfaces, Objects and Records
Functions and Procedures
Variables

Description

Tools for checking status, typically the status relates to a TForm component.

Overview

Types

TState = (...);
TStateArray = array[TState] of String;

Constants

StateArray: TStateArray = ('UnCreated', 'Created', 'Ready', 'Focused', 'UnFocused');

Description

Types

TState = (...);

The current status of the component.

Values
  • UnCreated: the state is inconsistent
  • Created: the component has been created but is not yet initialised
  • Ready: the component has been created and is initialised
  • Focused: the component is active
  • UnFocused: the component is not active
TStateArray = array[TState] of String;

Array type for mapping TState values to strings.

Constants

StateArray: TStateArray = ('UnCreated', 'Created', 'Ready', 'Focused', 'UnFocused');

Array that maps TState enumeration values to their corresponding string representations.