Search
TableNode.Row.Header Property
See Also
 





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

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool Header { get; set; }

Visual Basic  Copy Code

Public Property Header As Boolean

 Property Value

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