TMSFMXGrid column ctcheckbox

Hello,


in an actual app there is a column of type ctcheckbox for selecting records:

1. the size of the checkbox symbol is fixed or is there an easy way to enlarge it ?
2. can the symbol be cantered in the column ?

Thanks in advance
Michael Jung

Hi,


The symbol itself is fixed, the size, position can be manipulated by implementing the OnGetCellProperties and use the following code:


procedure TForm1.DoGetCellProperties(Sender: TObject; ACol, ARow: Integer; Cell: TFMXObject);
begin
  if (Cell is TTMSFMXCheckedGridCell) then
  begin
    (Cell as TTMSFMXCheckedGridCell).CheckBox.Align := TAlignLayout.Client;
  end;
end;