Site icon Python GUI

Learn What You Need To Know About DelphiVCL.Application.NonBiDiKeyboard Property

DelphiVCLApplicationNonBiDiKeyboard Property blog banner

NonBiDiKeyboard or DelphiVCL.Application.NonBiDiKeyboard property specifies the name of the keyboard map that should be used unless text reads from right to left.

Use NonBiDiKeyboard to specify the keyboard map that should be used. This name is a string composed of the hexadecimal value of the language identifier (low word) and a device identifier (high word). For example, U.S. English has a language identifier of 0x0409, so the primary U.S. English layout is named “00000409”. Variants of U.S. English layout (such as the Dvorak layout) are named “00010409”, “00020409”, and so on.

If the application is running in a middle eastern locale and the value of BiDiMode indicates that text should read from right to left, the application uses BiDiKeyboard instead.

 

How to examine the properties, methods, and built-in properties of the DelphiVCL.Application.NonBiDiKeyboard?

Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.NonBiDiKeyboard using dir() command:

[crayon-662e3df300a67050189959/]

See the responses in our Windows command prompt:

You can also read short information about the DelphiVCL.Application.NonBiDiKeyboard using the print() command:

[crayon-662e3df300a70485801339/]

See the responses in our Windows command prompt:

 

Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.

Exit mobile version