Skip to main content
All docs
V26.1
  • TdxSplashFormBase.TContentItemKind Enum

    Enumerates Splash Form widget types.

    Declaration

    TContentItemKind = (
        Unknown,
        Text,
        Image,
        ProgressBar,
        Animation,
        ApplicationProperty,
        FormattedApplicationInfo
    );

    Members

    Name Description
    Unknown

    An identified object. This value indicates an error.

    Text

    The static multi-line label widget (TdxSplashFormBase.TText).

    Image

    The image widget (TdxSplashFormBase.TImage).

    ProgressBar

    The progress bar widget (TdxSplashFormBase.TProgress).

    Animation

    The Activity Indicator/Animation widget (TdxSplashFormBase.TAnimation).

    ApplicationProperty

    The application property widget (TdxSplashFormBase.TApplicationProperty).

    FormattedApplicationInfo

    The formatted app properties widget (TdxSplashFormBase.TFormattedApplicationInfo).

    Remarks

    A TdxSplashFormBase.TContentItemKind value identifies the actual Splash Form widget type (a terminal TdxSplashFormBase.TContentItem class descendant).

    Note

    TdxSplashFormBase.TContentItemKind 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 TdxSplashFormBase.TContentItemKind.Animation (in Delphi) or TdxSplashFormBase.TContentItemKind::Animation (in C++Builder) to refer to the Animation value in code.

    Direct TdxSplashFormBase.TContentItemKind Type Reference

    The TdxSplashFormBase.TContentItem.Kind function references the TdxSplashFormBase.TContentItemKind type.

    See Also