Paragraphs.IndentCharWidth Method (Word)
Indents one or more paragraphs by a specified number of characters.
Syntax
expression .IndentCharWidth(Count)
expression Required. A variable that represents a Paragraphs collection.
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 all paragraphs in the active document by 10 characters.
With ActiveDocument.Paragraphs
.IndentCharWidth 10
End With