'Declaration
Property ShowDetail As Nullable(Of Boolean)
'Usage
Dim instance As IRange Dim value As Nullable(Of Boolean) instance.ShowDetail = value value = instance.ShowDetail
Nullable<bool> ShowDetail {get; set;}
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.'Declaration
Property ShowDetail As Nullable(Of Boolean)
'Usage
Dim instance As IRange Dim value As Nullable(Of Boolean) instance.ShowDetail = value value = instance.ShowDetail
Nullable<bool> ShowDetail {get; set;}
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.