IndentLevel Property

Applies To

Range object, Style object.

Description

Returns or sets the indent level for the range or style. Can be an integer from 0 to 15. Read/write Variant.

Remarks

Using this property to set the indent level to a number less than 0 (zero) or greater than 15 causes an error.

See Also

InsertIndent method.

Example

This example increases the indent level to 15 in cell A10.

With Range("A10")
    .IndentLevel = 15
End With