GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IRange Interface / ShowDetail Property


In This Topic
ShowDetail Property
In This Topic
true if the outline is expanded for the specified range (so that the detail of the column or row is visible). The specified range must be a single summary column or row in an outline.
Syntax
'Declaration
 
Property ShowDetail As Nullable(Of Boolean)
 
'Usage
 
Dim instance As IRange
Dim value As Nullable(Of Boolean)
 
instance.ShowDetail = value
 
value = instance.ShowDetail
Remarks
If the specified range isn't in a PivotTable report, the following statements are true: - The range must be in a single summary row or column. Otherwise, null will be returned. - This property returns false if any of the children of the row or column are hidden. - Setting this property to true is equivalent to show all the children of the summary row or column. - Setting this property to false is equivalent to hide all the children of the summary row or column.
See Also