Paragraph.TabHangingIndent method (Word)

Sets a hanging indent to a specified number of tab stops. .

Syntax

expression. TabHangingIndent( _Count_ )

expression Required. A variable that represents a 'Paragraph' object.

Parameters

Name Required/Optional Data type Description
Count Required Integer The number of tab stops to indent (if positive) or the number of tab stops to remove from the indent (if negative).

Remarks

You can also use this method to remove tab stops from a hanging indent if the value of Count is a negative number.

Example

This example sets a hanging indent to the second tab stop for the first paragraph in the active document.

ActiveDocument.Paragraphs(1).TabHangingIndent(2)

This example moves the hanging indent back one tab stop for the first paragraph in the active document.

ActiveDocument.Paragraphs(1).TabHangingIndent(-1)

See also

Paragraph Object

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.