Retrieves the cell's handle given the item and the column.
Type | Description | |||
Item as HITEM | A long expression that indicates the item's handle. | |||
ColIndex as Variant | A long expression that indicates the the column's index, a string expression that indicates the column's caption or the column's key. | |||
HCELL | A long value that indicates the cell's handle. |
The following lines are equivalents and each of them changes the bold font attribute of the first cell on the first item.
With ComboBox1 .Items.CellBold(, .Items.ItemCell(.Items(0), 0)) = True .Items.CellBold(.Items(0), 0) = True .Items.CellBold(.Items(0)) = True .Items.CellBold(.Items.ItemByIndex(0)) = True .Items.CellBold(.Items.ItemByIndex(0), 0) = True .Items.CellBold(.Items(0), ComboBox1.Columns(0).Caption) = True End With