Gets or sets the indent level for the
NamedRange control.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (in microsoft.office.tools.excel.dll)
public Object IndentLevel { get; set; }
Property Value
The indent level for the
NamedRange control.
The indent level can be an integer from 0 to 15.
Using this property to set the indent level to a number less than 0 (zero) or greater than 15 causes an exception to be thrown.
The following code example creates a NamedRange and then uses the IIndentLevel property to set the indent level of the NamedRange to 3.
Microsoft.Office.Tools.Excel.NamedRange indentRange;
private void SetIndentLevel()
{
indentRange = this.Controls.AddNamedRange(
this.Range["B4", missing], "indentRange");
this.indentRange.Value2 = "Smith";
this.indentRange.IndentLevel = 3;
}