AsianLineBreak Property [Access 2003 VBA Language Reference]

Returns or sets a Boolean indicating whether line breaks in text boxes follow rules governing East Asian languages. True to control line breaks based on East Asian language rules. Read/write.

expression.AsianLineBreak

expression Required. An expression that returns one of the objects in the Applies To list.

Remarks

Setting the AsianLineBreak property to True moves any punctuation marks and closing parentheses at the beginning of a line to the end of the previous line, and moves opening parentheses at the end of a line to the beginning of the next line.

Example

This example sets all the text boxes on the specified form to break lines according to East Asian language rules.

Dim ctlLoop As Control

For Each ctlLoop In Forms(0).Controls
    If ctlLoop.ControlType = acTextBox Then
        ctlLoop.AsianLineBreak = True
    End If
Next ctlLoop

Applies to | TextBox Object