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

    Enumerates Splash/Wait Form border styles.

    Declaration

    TBorderStyle = (
        None,
        Default
    );

    Members

    Name Description Example
    None

    A Splash or Wait Form that has no border.

    VCL Shared Libraries: A Wait Form Without a Border

    Default

    A Splash or Wait Form that displays a border (border appearance depends on an active skin and palette defined using the Application Settings dialog or a TdxSkinController component).

    VCL Shared Libraries: A Wait Form With a Border

    Remarks

    Note

    TdxSplashFormBase.TBorderStyle is a scoped enumeration type. Use the full 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.TBorderStyle.Default (in Delphi) or TdxSplashFormBase::TBorderStyle::Default (in C++Builder) to refer to the Default value in code.

    Direct TdxSplashFormBase.TBorderStyle Type Reference

    The TdxSplashFormBase.BorderStyle property references the TdxSplashFormBase.TBorderStyle type.

    See Also