TMSFMXTableViewItem Delete Button

 After clicking on this I would like to hide the delete button. Can you please tell me how to do this.

Thanks,

Ken

Can I please have a response to this question?. I would like it to auto hide after being clicked.

You can use the following code for this


procedure TForm1.TMSFMXTableView1ItemDelete(Sender: TObject;
  AItem: TTMSFMXTableViewItem; var AllowDelete: Boolean);
begin
  AllowDelete := False;
  AItem.ShapeDeleteButton.Visible := False;
end;

Thanks, that works.