Search
Table.RowExpanded Property
See Also
 



Gets or sets a value indicating whether the table section starting from a HeaderRow is expanded.

 Syntax

VB6  Copy Code

Public Property Get RowExpanded( _
    ByVal row As Long _
) As Boolean
Public Property Let RowExpanded( _
    ByVal row As Long, _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_RowExpanded (
    int row
)
void put_RowExpanded (
    int row,
    bool value
)

 Parameters

row
The 0-based index of the row.

 Property Value

A boolean value. The default is true.

 Remarks

This property can be set only if the row is a HeaderRow. Arrows connected to the rows of a collapsed table section appear to be connected to the section header row.

 See Also