Delphi What is the IsRightToLeft Method in DelphiVCL.Application?

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
What is the IsRightToLeft Method in DelphiVCL.Application?
By Muhammad Azizul Hakim September 7, 2021

What is the Purpose of DelphiVCL.Application.IsRightToLeft Method?​

IsRightToLeft or DelphiVCL.Application.IsRightToLeft method specifies whether the application adjusts its interface for Middle Eastern locales.

Use IsRightToLeft to determine whether the application makes any adjustments of control alignment, text direction, or scroll bar placement. IsRightToLeft returns true if the application’s BiDiMode indicates that any of these should be reversed and the application is running on a system with a Middle Eastern locale.

What are the methods and built-in properties of the DelphiVCL.Application.IsRightToLeft ?​

Let’s browse all the methods and built-in properties of the DelphiVCL.Application.IsRightToLeft using dir() command:
Python:
import DelphiVCL
 
dir(DelphiVCL.Application.IsRightToLeft)
See the responses in our Windows command prompt:
1631000305979.png
You can also read short information about the DelphiVCL.Application.IsRightToLeft using the print() command:
Python:
print(DelphiVCL.Application.IsRightToLeft)
print(DelphiVCL.Application.IsRightToLeft.__doc__)
See the responses in our Windows command prompt:
1631000342572.png