When creating a button column
Grid.Columns[0].&Type:=gcitButton;
Grid.Columns[0].TypeRange:=gcirNormal;
Grid.Columns[0].AddSetting(gcsType);
and creating properties like
procedure TForm.GridGetCellProperties(Sender: TObject; ACell: TTMSFNCDataGridCell);
begin
if ACell.IsButtonCell then ACell.AsButtonCell.Button.Caption:='Test';
end;
how can I get access to properies in GridCellButtonClick event?
procedure TForm.GridCellButtonClick(Sender: TObject; AColumn, ARow: Integer);
begin
ACell???
end;