[]
Gets or sets whether the outline detail is shown for the specified range.
The range must be a single summary row or summary column in an outline. When the outline is expanded, the detail rows or columns are visible.
The following rules apply:
false if any child rows or columns are hidden.true unhides all child rows or columns of the summary row or column.false hides all child rows or columns of the summary row or column.bool ShowDetail { get; set; }
Property ShowDetail As Boolean
worksheet.Range["2:4"].Group();
IRange summaryRow = worksheet.Range["5:5"];
summaryRow.ShowDetail = false;
bool hidden = worksheet.Range["2:2"].Hidden;