TAdvMemo OnActiveLineChange

Using TAdvMemo v3.6.2.10.

I was attempting to use the OnActiveLineChange event to track the current memo line in a status bar, but found that the event never fires when cursor changes lines. Is this a bug or am I missing something?

Did you set AdvMemo.ActiveLineSettings.ActiveLineAtCursor?


Alternatively, you can implement the OnCursorChange event handler.



Thanks, I thought that I was missing something. It works when I set ActiveLineAtCursor. I've decided to implement OnCursorChange instead. Thanks for the hint.