SSpread.TypeComboBoxCount Property
In the combo box type cell, refer to the number of items in the list.
Only valid for cells with the CellType property set to $CellTypeComboBox (combo box type). Before setting this property, use the Col , Row properties etc. to specify what to process.
This property is read-only. The initial value is 0 .
The number of displayed items can be set with the TypeComboBoxMaxDrop property.
Use case
Col = 3;
Row = 2;
CellType = $CellTypeComboBox;
TypeComboBoxList = "AAA\tBBB\tCCC\tDDD\tEEE";
print(TypeComboBoxCount, "\n");
Related item
CellType , TypeComboBoxList , TypeComboBoxMaxDrop properties