ParagraphFormat.IndentFirstLineCharWidth Method

Word Developer Reference

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 ParagraphFormat 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.

Visual Basic for Applications
  Selection.ParagraphFormat.IndentFirstLineCharWidth 10

See Also