Paragraph.IndentCharWidth method (Word)

Indents a paragraphs by a specified number of characters.

Syntax

expression. IndentCharWidth( _Count_ )

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

Parameters

Name Required/Optional Data type Description
Count Required Integer The number of characters by which the specified paragraphs are to be indented.

Remarks

This method is equivalent to clicking the Increase Indent button on the Formatting toolbar.

Example

This example indents the first paragraph of the active document by 10 characters.

With ActiveDocument.Paragraphs(1) 
 .IndentCharWidth 10 
End With

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.