Paragraph.IndentFirstLineCharWidth Method (Word)
Indents the first line of one or more paragraphs by a specified number of characters.
Syntax
expression .IndentFirstLineCharWidth(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 first line of each specified paragraph is to be indented. |
Example
This example indents the first line of the first paragraph in the active document by 10 characters.
With ActiveDocument.Paragraphs(1)
.IndentFirstLineCharWidth 10
End With