Gets or sets the number of list items in a CommandBarComboBox control that appears above the separator line. Read/write.

Note
The use of CommandBars in some Microsoft Office applications has been superseded by the new Ribbon user interface. For more information, search help for the keyword "Ribbon."

Syntax

expression.ListHeaderCount

expression A variable that represents a CommandBarComboBox object.

Remarks

Note
This property is read-only for built-in combo box controls.

A ListHeaderCount property value of - 1 indicates that there's no separator line in the combo box control.

Example

This example adds a combo box control to the command bar named "Custom" and then adds two items to the combo box. The example uses the ListHeaderCount property to display a separator line between First Item and Second Item in the combo box. The example also sets the number of line items, the width of the combo box, and an empty default for the combo box.

Visual Basic for Applications
Set myBar = CommandBars("Custom") Set myControl = myBar.Controls.Add(Type:=msoControlComboBox) With myControl .AddItem Text:="First Item", Index:=1 .AddItem Text:="Second Item", Index:=2 .DropDownLines = 3 .DropDownWidth = 75 .ListHeaderCount = 1 End With
count the number of items listed within the command bar combo box control list list header count List Header Count Property listheader ListHeaderCount listheadercount property ofv return list of items within the command bar combo box control set the number of list items in the command bar combo box control

See also: