[]
Gets the icons of the cell decoration.
public IReadOnlyList<ICellDecorationIcon> Icons { get; }
Public ReadOnly Property Icons As IReadOnlyList(Of ICellDecorationIcon)
ICellDecorationIcon icon = new CellDecorationIcon(
"data:image/svg+xml;base64,PHN2Zz4=", 12, 12, IconPosition.OutsideRight);
CellDecoration decoration = new CellDecoration(new List<ICellDecorationIcon> { icon });
IReadOnlyList<ICellDecorationIcon> icons = decoration.Icons;