FireMonkey Grid & normal components

I would like to embed a normal FireMonkey component (Tedit, TComboBox, TButton, etc) into a specific cell using C++Builder.  Can it be done?  If so, can you provide example code?


Yes, you can use 


  TMSFMXGrid1->CellControls[1][1] = Button1;

Thank you very much!  It was syntax problems as examples had it as CellControls[1,1]

That is the Delphi way of accessing the CellControls property.