ADO Database Delphi

Title: How to set the number of fixed columns in a TDBGrid
procedure TForm1.Button1Click(Sender: TObject);
begin
TStringGrid(DbGrid1).FixedCols := 2;
end;