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
|
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. |