Share via


Paragraphs.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 Paragraphs collection.

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 all paragraphs in the active document by 10 characters.

With ActiveDocument.Paragraphs 
 .IndentFirstLineCharWidth 10 
End With

See Also

Concepts

Paragraphs Collection Object

Paragraphs Object Members