TMSFMXGrid Column width

Hello,

the width of columns in a TMSFMXGrid is not changable by user in design and runtime.
The data is connected via livebinding.
How to let user move and resize columns?

To understand the problem I found in the documentation the property:
UseColumns ( bool )

This property does not exist in my Objectinspector.
Grid Version: 2.2.0.4 ( downloaded and installed today ).

Maybe its just an outdated property...
My question is how to allow the user to manipulate Columns?


using XE6 Win32 on Windows7
Help is very welcome !

Hi, 


You can use move / size columns by setting 2 properties:

  TMSFMXGrid1.Options.Mouse.ColumnSizing := True;
  TMSFMXGrid1.Options.Mouse.ColumnDragging := True;

Please note that when connected to LiveBindings, moving columns is not supported.

Kind Regards,
Pieter

Aaaah!  ;-)

THANKS!