AdvStringGrid Shapes

According to the documentation you can only have one shape per cell is it possible to have more than one shapes per cell without using html?(I use delphi 11.2)
AdvStringGrid1.AddShape(1,1,csDiamond,clLime, clSilver,
haBeforeText,vaTop);
thanks
Nalaka

The documentation is correct. The AddShape() method allows to add one shape to a cell. If you want to have multiple shapes, either you can use HTML or custom drawing.

Hi Bruno
Thanks for the reply I have used mini html controls as you suggested I want 3 buttons following code does the job.
<CONTROL TYPE=BUTTON" WIDTH="20" VALUE="a" ID="BTN1">

is it possible to change the color and height of the buttons? I tried but it doesn't seem to work .

The CONTROL BUTTON type uses by default the operating system button appearance. It is at this moment not possible to change this color.