Поделиться через


Range.TwoLinesInOne Property (Word)

Returns or sets whether Microsoft Word sets two lines of text in one and specifies the characters that enclose the text, if any. Read/write WdTwoLinesInOneType.

Syntax

expression .TwoLinesInOne

expression Required. A variable that represents a Range object.

Remarks

Setting the TwoLinesInOne property to wdTwoLinesInOneNoBrackets sets two lines of text in one without enclosing the text in any characters. Setting the TwoLinesInOne property to wdTwoLinesInOneNone restores a line of combined text to two separate lines.

Example

This example formats the current selection as two lines of text in one, enclosed in parentheses.

Selection.Range.TwoLinesInOne = _ 
 wdTwoLinesInOneParentheses

See Also

Concepts

Range Object Members

Range Object