Skip to content

Latest commit

 

History

History
48 lines (29 loc) · 1.38 KB

Access.NavigationButton.ReadingOrder.md

File metadata and controls

48 lines (29 loc) · 1.38 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
NavigationButton.ReadingOrder property (Access)
vbaac10.chm10505
vbaac10.chm10505
Access.NavigationButton.ReadingOrder
5d436f27-e896-15c0-3733-ec7629d58214
02/23/2019
medium

NavigationButton.ReadingOrder property (Access)

Use the ReadingOrder property to specify or determine the reading order of words in text. Read/write Byte.

Syntax

expression.ReadingOrder

expression A variable that represents a NavigationButton object.

Remarks

The ReadingOrder property uses the following settings.

Setting Visual Basic Description
Context 0 Reading order is determined by the language of the first character entered.

If a right-to-left language character is entered first, reading order is right to left.

If a left-to-right language character is entered first, reading order is left to right.
Left-to-Right 1 Sets the reading order to left to right.
Right-to-Left 2 Sets the reading order to right to left.

Example

The following example sets the reading order to right to left for the Address text box on the International Shipping form.

Forms("International Shipping").Controls("Address").ReadingOrder = 2

[!includeSupport and feedback]