[]
Gets or sets the property which controls indentation of text when horizontal or vertical alignment is set to distributed.
bool AddIndent { get; set; }
Property AddIndent As Boolean
| Type | Description |
|---|---|
| bool |
|
IRange range = worksheet.Range["A1"];
range.HorizontalAlignment = HorizontalAlignment.Distributed;
range.AddIndent = true;
bool addIndent = range.AddIndent;