Vcl.StdCtrls.TRadioButton.Alignment

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Alignment: TLeftRight read FAlignment write SetAlignment default taRightJustify;

C++

__property System::Classes::TLeftRight Alignment = {read=FAlignment, write=SetAlignment, default=1};

Properties

Type Visibility Source Unit Parent
property published
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls TRadioButton

Description

Determines the position of the caption relative to the radio button.

Set Alignment to determine whether the caption of the radio button should appear to the left of the radio button (taLeftJustify) or to the right of the radio button (taRightJustify).

Note: Do not confuse the Alignment property with the alignment of the caption in the text area of the radio button. The caption always appears left aligned. Alignment only controls on which side of the button the text area appears.

See Also