Skip to content

Latest commit

 

History

History
52 lines (30 loc) · 1.22 KB

Word.ParagraphFormat.CharacterUnitFirstLineIndent.md

File metadata and controls

52 lines (30 loc) · 1.22 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ParagraphFormat.CharacterUnitFirstLineIndent property (Word)
vbawd10.chm156434560
vbawd10.chm156434560
Word.ParagraphFormat.CharacterUnitFirstLineIndent
f5e68ef0-7086-4d33-7ed0-3c0569d203cd
06/08/2017
medium

ParagraphFormat.CharacterUnitFirstLineIndent property (Word)

Returns or sets the value (in characters) for a first-line or hanging indent. Use a positive value to set a first-line indent, and use a negative value to set a hanging indent. Read/write Single.

Syntax

expression. CharacterUnitFirstLineIndent

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

Example

This example sets a first-line indent of one character for the first paragraph in the active document.

ActiveDocument.Paragraphs(1) _ 
 .CharacterUnitFirstLineIndent = 1

This example sets a hanging indent of 1.5 characters for the second paragraph in the active document.

ActiveDocument.Paragraphs(2) _ 
 .CharacterUnitFirstLineIndent = -1.5

See also

ParagraphFormat Object

[!includeSupport and feedback]