Skip to main content
All docs
V26.1
  • TdxSplashFormKind Enum

    Enumerates available Splash Form types.

    Declaration

    TdxSplashFormKind = (
        Splash,
        Wait
    );

    Members

    Name Description
    Splash

    The Splash Form designed to indicate app initialization (TdxSplashForm).

    Wait

    The Splash Form designed to indicate time-consuming processes that lock the application UI (TdxWaitForm).

    Remarks

    A TdxSplashFormKind property value identifies the actual Splash Form type (a terminal TdxSplashFormBase class descendant).

    Note

    TdxSplashFormKind is a scoped enumeration type. Use the type name together with a scope resolution token (. in Delphi or :: in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxSplashFormKind.Wait (in Delphi) or TdxSplashFormKind::Wait (in C++Builder) to refer to the Wait value in code.

    Direct TdxSplashFormKind Type Reference

    The TdxSplashFormBase.Kind property references the TdxSplashFormKind type.

    See Also