AsianLineBreak Property

Microsoft Access Visual Basic

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