EditBtn No Edit Option

It would be nice if there were an option to disable the edit that happens with the ...EditBtn editors in TAdvStringGrid, there are useful things that can be done with the button, things that pertain to the data in the row, that don't involve editing. It's not a problem if the column with the button doesn't allow editing but when you need the column to be editable it's difficult to prevent the editor from activating when using the button for non editing functions.

Can be done with:

procedure TForm1.AdvStringGrid1GetEditorProp(Sender: TObject; ACol,
  ARow: Integer; AEditLink: TEditLink);
begin
  AdvStringGrid1.BtnEdit.EditorEnabled := false;
end;