Gets or sets a value indicating whether a row is the header of a table section.
SyntaxVB6
Copy Code
|
|---|
Public Property Get HeaderRow( _ |
C++
Copy Code
|
|---|
public: |
A boolean value. The default is false.
RemarksEach header row defines a section of the table that includes all non-header rows after the header. Such sections can be expanded or collapsed, i.e. 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 RowExpanded property. The TableSectionCollapsed and TableSectionExpanded events are raised when a user clicks the +/- button.
ExampleThe following code defines two sections of table rows that can be collapsed and expanded back:
VB6
Copy Code
|
|---|
Private Sub fcx_TableCreated(ByVal table As FLOWCHARTLibCtl.ITableItem) |
See Also