Search
TableRow.header Property
See Also
 





Gets or sets a value indicating whether this row is a section header.

Namespace: MindFusion.Diagramming
File: TableRow.js

 Syntax

JavaScript  Copy Code

get header() {}
set header(value) {}

 Property Value

Boolean

true if this is the header row of a table section, otherwise false. The default is false.

 Remarks

Each header row defines a section of the table that includes all non-header rows after the header. Such sections can be expanded or collapsed, that is, the rows included in them can be shown or hidden. This can be done interactively by pressing the [±] button displayed in header rows, or programmatically by setting the expanded property. The tableSectionCollapsed and tableSectionExpanded events are raised when a user clicks the [±] button.

 See Also