Vcl.Ribbon.TCustomRibbonGroup.GroupAlign

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property GroupAlign: TGroupAlign read FGroupAlign write SetGroupAlign default gaVertical;

C++

__property TGroupAlign GroupAlign = {read=FGroupAlign, write=SetGroupAlign, default=1};

Properties

Type Visibility Source Unit Parent
property public
Vcl.Ribbon.pas
Vcl.Ribbon.hpp
Vcl.Ribbon TCustomRibbonGroup

Description

Determines how controls on group are aligned.

GroupAlign contains a TGroupAlign that determines how controls on a group are aligned.

If alignment is gaHorizontal, controls are aligned left to right, top to bottom. To make a control start in a new row, set the NewRow property to true.

If alignment is gaVertical, controls are aligned top to bottom, left to right. Controls are automatically moved to the next column in the group if three controls are already in the column. You can also force a control to a new column by setting the NewCol property to true.

See Also