Search
FlowChart.TableSectionCollapsed Event
See Also
 



Raised when the "-" button in a header row of a table is clicked to collapse the rows under that header.

 Syntax

VB6  Copy Code

Public Event TableSectionCollapsed

 Event Data

Property

Type

Description

table

[input] reference to a Table

Refers to the Table whose rows are collapsed.

rowIndex

[input] long

The index of the header row whose "-" button is clicked.

Dispatch ID: 91

 Remarks

A 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. TableSectionCollapsed is raised when a user clicks the "-" button, but not when RowExpanded is set to false programmatically.

 See Also