FNCGrid adding picture with StretchMode

I have problem adding
picture to grid because my pictures are png and their sizes bigger than
cell sizes. I can put picture into grid with AddBitmap function but its very bad looking. Is TTMSFNCGrid  has any function with strechmode like TAdvStringGrid's AddPicture function

Yes, you can use the following code to stretch the bitmap:




  if Cell is TTMSFNCBitmapGridCell then
    (Cell as TTMSFNCBitmapGridCell).ControlStretched := True;

Thanks , İts work :)