Property Cells
Cells
Gets or sets a collection containing all column cells of the item. Cells are created when this property is accessed for the first time. If you do not need column cells, do not access this property. When this property is set, no repaint of the container is performed automatically.
public BaseCollection<ListControlItem> Cells { get; set; }
Property Value
Remarks
This collection is used when item has multiple columns. If you need to use only single-column item, use Text or other properties of the item. In order to know whether item has column cells, use HasCells property. Using the Cells property, you can add column cells, remove column cells, and obtain a count of column cells.