Vcl.Controls.TControl.ParentBiDiMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ParentBiDiMode: Boolean read FParentBiDiMode write SetParentBiDiMode default True;

C++

__property bool ParentBiDiMode = {read=FParentBiDiMode, write=SetParentBiDiMode, default=1};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TControl

Description

Specifies whether the control uses its parent's BiDiMode.

Use ParentBiDiMode to get or set whether the control uses its parent's BiDiMode. When ParentBiDiMode is true, the control's BiDiMode property is always equal to that of its parent. If ParentBiDiMode is false, the control uses its own BiDiMode property.

Set ParentBiDiMode to true for all controls in a form to ensure that the entire user interface adjusts to Middle Eastern locales in a uniform manner.

When the value of the control's BiDiMode property changes, ParentBiDiMode becomes false automatically.

See Also