

| Type | Description | |||
| Alignment as VAlignmentEnum | A VAlignmentEnum expression that specifies the top or bottom side of the group. | |||
| Long | A long expression that indicates the number of items locked to the top or bottom side of the group. |

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