OutlineLevel Property
OutlineLevel
Gets or sets the current outline level of the specified row or column.
Declaration
int OutlineLevel { get; set; }
Property OutlineLevel As Integer
Examples
IRange range = worksheet.Range["2:4"];
range.OutlineLevel = 2;
int outlineLevel = range.OutlineLevel;