Resize in TMSFNCDataGrid

How should I configure TMSF DataGrid so that the width of the columns can be manipulated by the user, freely, first placing the columns approximately the width of the content of each one. In AdvStringGrid I can't do it here, or there is a special configuration.

Hi,

There is an setting under Options.

TMSFNCDataGrid1.Options.Mouse.ColumnSizing := True; (normal cells)
TMSFNCDataGrid1.Options.Mouse.FixedColumnSizing := True; (fixed cells)

Then, you can auto-size the column to the contents first by calling

TMSFNCDataGrid1.AutoSizeColumns;

Genial, gracias. Se puede aplicar el resize en modo diseƱo y ya dejara asi los tamaƱos de columnas que quiero, ademas de permitirle al usuario que pueda actualizar.

Thanks for the confirmation. If anything comes up, let me know.