Skip to main content
All docs
V26.1
  • TItemAlignment.Horizontal Property

    Specifies horizontal content position within the label Splash Form widget.

    Declaration

    property Horizontal: TdxSplashFormBase.TAlignment read; write; default TdxSplashFormBase.TAlignment.Near;

    Property Value

    Type Default Description
    TdxSplashFormBase.TAlignment Near

    The current horizontal content position.

    Remarks

    Use Horizontal and Vertical properties to position content within a label widget (TdxSplashFromBase.TCustomText descendant).

    Available Options

    TdxSplashFormBase.TAlignment.Near

    Default. Content is aligned to the near widget border. The near border position depends on the application-wide BiDiMode property value:

    bdLeftToRight | bdRightToLeftNoAlign | bdRightToLeftReadingOnly
    Standard Splash/Wait form layout. The left widget border is interpreted as near. Widget content is left-aligned.
    bdRightToLeft
    Mirrored Splash/Wait form layout. The right widget border is interpreted as near. Widget content is right-aligned.
    TdxSplashFormBase.TAlignment.Center
    Content is centered horizontally.
    TdxSplashFormBase.TAlignment.Far

    Content is aligned to the far widget border. The far border position depends on the application-wide BiDiMode property value:

    bdLeftToRight | bdRightToLeftNoAlign | bdRightToLeftReadingOnly
    Standard Splash/Wait form layout. The right widget border is interpreted as far. Widget content is right-aligned.
    bdRightToLeft
    Mirrored Splash/Wait form layout. The left widget border is interpreted as far. Widget content is left-aligned.

    Default Value

    The Horizontal property’s default value is TdxSplashFormBase.TAlignment.Near.

    See Also