[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.ShowDetail

ShowDetail Property

ShowDetail

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:

  1. The range must be a single summary row or summary column.
  2. This property returns false if any child rows or columns are hidden.
  3. Setting this property to true unhides all child rows or columns of the summary row or column.
  4. Setting this property to false hides all child rows or columns of the summary row or column.
Declaration
bool ShowDetail { get; set; }
Property ShowDetail As Boolean
Examples
worksheet.Range["2:4"].Group();
IRange summaryRow = worksheet.Range["5:5"];
summaryRow.ShowDetail = false;
bool hidden = worksheet.Range["2:2"].Hidden;