Show comments by cell click

hi is there a way to show the comments from a comment cell by clicking the cell not just the rectangle.
Or to increase the size of the rectangle. This is for touch screens

It's not possible to increase the size of the comment triangle. You could trigger the OnControlClick event manually, which is triggered when clicking on the comment triangle:

procedure TForm1.TMSFNCGrid1CellClick(Sender: TObject; ACol, ARow: Integer);
var
  c: TTMSFNCGridCell;
begin
  c := TMSFNCGrid1.GetCell(MakeCell(ACol, ARow));
  if Assigned(c) and Assigned(c.OnControlClick) then
    c.OnControlClick(c);
end;

Thank you, works perfectly