Search
DiagramBase.TableSectionCollapsed Event
See Also
 





Raised when the user collapses the rows of a table’s section by clicking the [-] button in the section's header row.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<RowEventArgs> TableSectionCollapsed

Visual Basic  Copy Code

Public Event TableSectionCollapsed As EventHandler(Of RowEventArgs)

 Event Data

TableSectionCollapsed event handlers receive an argument of type RowEventArgs. The following RowEventArgs members provide information relevant to the event:

Member name

Description

Table

The TableNode that contains the collapsed rows.

RowIndex

Index of the header row of the collapsed section.

 Remarks

A header row is a row whose Header 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 Expanded is set to false programmatically.

 See Also