

| Type | Description | |||
| Long | A long expression that indicates the height of the group's header bar. |
For instance, the following sample displays the group's header bar using multiple lines:
With ExplorerTree1.Groups.Add("Group 2")
.BeginUpdate
.HeaderVisible = True
.HeaderHeight = 32
With .Columns(0)
.HTMLCaption = "Line1<br>Line2"
.Width = 128
End With
With .Columns.Add("Column 1")
.HTMLCaption = "Line1<br>Line2"
.Width = 128
End With
.EndUpdate
End With