

| Type | Description | |||
| Item as HITEM | A long expression that indicates the item's handle. | |||
| Long | A long expression that indicates the column's index. |
The following sample adds a divider item that's locked to the top side of the first group in the control: ( Before running this sample please make sure that your control contains groups objects ):
With ExplorerTree1.Groups(0)
.BeginUpdate
.DrawGridLines = exNoLines
With .Items
.LockedItemCount(TopAlignment) = 1
Dim h As HITEM
h = .LockedItem(TopAlignment, 0)
.ItemDivider(h) = 0
.ItemHeight(h) = 24
.CellCaption(h, 0) = "<b>Total</b>: $12.344.233"
.CellCaptionFormat(h, 0) = exHTML
.CellHAlignment(h, 0) = RightAlignment
End With
.EndUpdate
End With
