Vcl.DBCtrls.TDBMemo.UseRightToLeftAlignment

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function UseRightToLeftAlignment: Boolean; override;

C++

DYNAMIC bool __fastcall UseRightToLeftAlignment();

Properties

Type Visibility Source Unit Parent
function public
Vcl.DBCtrls.pas
Vcl.DBCtrls.hpp
Vcl.DBCtrls TDBMemo

Description

Specifies whether the control's alignment should be reversed right-to-left.

Vcl.DBCtrls.TDBMemo.UseRightToLeftAlignment inherits from Vcl.Controls.TControl.UseRightToLeftAlignment. All content below this line refers to Vcl.Controls.TControl.UseRightToLeftAlignment.

Specifies whether the control's alignment should be reversed right-to-left.

Controls call UseRightToLeftAlignment when implementing the BiDiMode property. UseRightToLeftAlignment indicates whether the control's alignment should be reversed right-to-left. This information can be used when painting the control or when responding to mouse events.

UseRightToLeftAlignment returns True if the application is running on a system with a Middle Eastern locale and the BiDiMode property is bdRightToLeft. Otherwise, it returns False. Descendants override UseRightToLeftAlignment if alignment in Middle Eastern locales depends on other factors.

See Also