-1

How can I determine if in a FMX Stringgrid a column is resized?

I can't find any information about it online.

Nyerguds
  • 5,360
  • 1
  • 31
  • 63
R.Nowee
  • 1
  • 1
  • 1
    Please show what you have tried, and why it didn't work! – PHPirate Mar 24 '18 at 10:47
  • Welcome to SO! Please, take [**The Tour**](http://stackoverflow.com/tour) for a brief intro on Stack Overflow, and then read [**Asking**](http://stackoverflow.com/help/asking) to learn what you can ask about and how to present your question. – Tom Brunberg Mar 24 '18 at 12:14
  • 2
    I wonder where you have looked: [click here](http://docwiki.embarcadero.com/Libraries/XE7/en/FMX.Grid.TColumn.OnResize). It's right there – Tom Brunberg Mar 24 '18 at 12:15
  • I Totally overlooked it I looked in Delphi at the Column, there you cannot set it in design time, only in runtime. Thanks for the answer! – R.Nowee Mar 26 '18 at 09:09

1 Answers1

3

Use the OnResize action of the column and inside do what you need - set some boolean variable like Column_resized to true, etc.