Raised when the "+" button in a header row of a table is clicked to expand the rows under that header.
SyntaxVB6
Copy Code
|
|---|
Public Event TableSectionExpanded |
Event DataParameter | Type | Description |
|---|---|---|
table | [input] reference to a Table | Refers to the Table whose rows are expanded. |
rowIndex | [input] long | Index of the header row whose "+" button is clicked. |
Dispatch ID: 90
RemarksA header row is a row for which the HeaderRow property is enabled. Such rows display a +/- button which can be used to expand or collapse all rows below a header up to the next header. TableSectionExpanded is raised when a user clicks the "+" button, but not when RowExpanded is set to true programmatically.
See Also