API:Vcl.DBCtrls.TDBListBox.UseRightToLeftAlignment

From RAD Studio API Documentation
Revision as of 08:53, 8 October 2011 by PyBot (talk | contribs) (Created page with '<section begin=api /> <!--Start API Info--><ul id='childlinks'><li class='first'>'''Up to Parent: TDBListBox'''</li> </ul> <vclInfo name="UseRightToLef...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Delphi

function UseRightToLeftAlignment: Boolean; override;

C++

DYNAMIC bool __fastcall UseRightToLeftAlignment(void);

Properties

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

Description

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

Vcl.DBCtrls.TDBListBox.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