TextBox.AsianLineBreak property (Access)
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.
Syntax
expression.AsianLineBreak
expression A variable that represents a TextBox object.
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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.